.page-contact {
    color: #333333; /* Dark text for light body background */
}

.page-contact__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-contact__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-contact__hero-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
    padding: 40px;
    border-radius: 10px;
    color: #ffffff; /* White text on dark overlay */
}

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

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000000; /* Black text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-contact__methods-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.page-contact__methods-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-contact__methods-title {
    font-size: 2.8em;
    color: #000000; /* Black title */
    margin-bottom: 40px;
}

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

.page-contact__method-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-contact__method-icon {
    width: 250px; /* Enlarge icon size */
    height: 200px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: none; /* Ensure no color filters */
}

.page-contact__method-name {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-contact__method-description {
    font-size: 1.05em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact__method-button {
    display: inline-block;
    background-color: #000000; /* Black button */
    color: #FFD700; /* Gold text */
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__method-button:hover {
    background-color: #333333;
    color: #FFD700;
}

.page-contact__form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.page-contact__form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fdfdfd;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__form-title {
    font-size: 2.8em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.page-contact__form-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-contact__contact-form {
    display: grid;
    gap: 25px;
}

.page-contact__form-group {
    text-align: left;
}

.page-contact__form-label {
    display: block;
    font-size: 1.1em;
    color: #333333;
    margin-bottom: 8px;
    font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #333333;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700; /* Gold focus */
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    outline: none;
}

.page-contact__form-textarea {
    resize: vertical;
}

.page-contact__form-submit-button {
    display: block;
    width: 100%;
    background-color: #FFD700; /* Gold submit button */
    color: #000000;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-contact__faq-section {
    padding: 80px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.page-contact__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-contact__faq-title {
    font-size: 2.8em;
    color: #000000;
    margin-bottom: 20px;
}

.page-contact__faq-description {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-contact__faq-button {
    display: inline-block;
    background-color: #000000; /* Black button */
    color: #FFD700; /* Gold text */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__faq-button:hover {
    background-color: #333333;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 2.8em;
    }
    .page-contact__hero-content {
        padding: 30px;
    }
    .page-contact__methods-title,
    .page-contact__form-title,
    .page-contact__faq-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section {
        padding-top: var(--header-offset, 120px);
        padding-bottom: 40px;
    }
    .page-contact__hero-title {
        font-size: 2.2em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-contact__methods-section,
    .page-contact__form-section,
    .page-contact__faq-section {
        padding: 60px 20px;
    }
    .page-contact__methods-title,
    .page-contact__form-title,
    .page-contact__faq-title {
        font-size: 2em;
    }
    .page-contact__methods-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__method-icon {
        width: 200px;
        height: 150px;
    }
    .page-contact__form-container {
        padding: 30px;
    }
    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 12px;
    }
    .page-contact__form-submit-button {
        padding: 15px;
        font-size: 1.1em;
    }
    /* Mobile image overflow prevention */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
    .page-contact {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 1.8em;
    }
    .page-contact__hero-content {
        padding: 25px;
    }
    .page-contact__hero-description {
        font-size: 0.9em;
    }
    .page-contact__methods-title,
    .page-contact__form-title,
    .page-contact__faq-title {
        font-size: 1.8em;
    }
    .page-contact__method-name {
        font-size: 1.5em;
    }
    .page-contact__method-description {
        font-size: 0.95em;
    }
    .page-contact__form-label {
        font-size: 1em;
    }
}