.page-contact {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-contact__hero-section {
    position: relative;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #1A1A1A; /* Dark background for hero */
    overflow: hidden;
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim image for text readability */
}

.page-contact__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    z-index: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
    border-radius: 10px;
}

.page-contact__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-contact__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-contact__button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700; /* Gold button */
    color: #1A1A1A; /* Dark text on gold */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-contact__button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-contact__button--primary {
    background-color: #FFD700;
    color: #1A1A1A;
}

.page-contact__button--primary:hover {
    background-color: #e6c200;
}

.page-contact__button--secondary {
    background-color: #1A1A1A;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-contact__button--secondary:hover {
    background-color: #333333;
    color: #FFD700;
}

.page-contact__methods-section,
.page-contact__deep-content {
    padding: 60px 0;
    background-color: #1A1A1A; /* Dark background for sections */
    color: #ffffff;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
}

.page-contact__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-contact__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-contact__method-card {
    background-color: #333333; /* Slightly lighter dark for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
}

.page-contact__method-icon {
    width: 200px; /* Minimum 200px */
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Slightly brighten icons, not changing hue */
    border-radius: 8px;
}

.page-contact__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-contact__card-description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 25px;
}

.page-contact__deep-content .page-contact__paragraph {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-contact__sub-title {
    font-size: 2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-contact__feedback-form {
    margin-top: 40px;
    background-color: #333333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-contact__form-group {
    margin-bottom: 20px;
}

.page-contact__form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #FFD700;
}

.page-contact__feedback-form input[type="text"],
.page-contact__feedback-form input[type="email"],
.page-contact__feedback-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #555555;
    border-radius: 5px;
    background-color: #1A1A1A;
    color: #ffffff;
    font-size: 1em;
    box-sizing: border-box;
}

.page-contact__feedback-form input[type="text"]::placeholder,
.page-contact__feedback-form input[type="email"]::placeholder,
.page-contact__feedback-form textarea::placeholder {
    color: #888888;
}

.page-contact__feedback-form textarea {
    resize: vertical;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description {
        font-size: 1.1em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__sub-title {
        font-size: 1.7em;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-content {
        padding: 15px;
    }
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-contact__method-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__method-card {
        padding: 20px;
    }
    .page-contact__method-icon {
        width: 200px; /* Enforce min-width */
        height: auto;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__section-intro,
    .page-contact__paragraph,
    .page-contact__card-description {
        font-size: 0.95em;
    }
    .page-contact__sub-title {
        font-size: 1.5em;
    }
    /* Mobile overflow prevention */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
    .page-contact__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-contact__hero-section {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
    .page-contact__methods-section,
    .page-contact__deep-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 1.8em;
    }
    .page-contact__hero-description {
        font-size: 0.9em;
    }
    .page-contact__button {
        padding: 10px 20px;
        font-size: 0.85em;
    }
    .page-contact__section-title {
        font-size: 1.5em;
    }
    .page-contact__sub-title {
        font-size: 1.3em;
    }
    .page-contact__feedback-form {
        padding: 20px;
    }
}