.page-contact {
    color: #F3F8FF;
    background-color: #08162B;
    font-family: Arial, sans-serif;
}

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

.page-contact__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: #113B7A;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 5; /* Matches 1920x600 */
}

.page-contact__hero-content {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin-top: 20px;
}

.page-contact__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: bold;
    color: #F3F8FF;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-contact__description {
    font-size: 1rem;
    color: #AFC4E8;
    line-height: 1.6;
}

.page-contact__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: #F3F8FF;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-contact__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #1D5FD1, #4FA8FF);
}

.page-contact__channels-section {
    padding: 60px 0;
    background-color: #08162B;
}

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

.page-contact__channel-card {
    background-color: #10233F;
    border: 1px solid #244D84;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px #4FA8FF;
}

.page-contact__channel-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
}

.page-contact__channel-name {
    font-size: 1.4rem;
    color: #F3F8FF;
    margin-bottom: 10px;
}

.page-contact__channel-description {
    font-size: 0.95rem;
    color: #AFC4E8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-contact__button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #F3F8FF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-contact__button:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-2px);
}

.page-contact__form-section {
    padding: 60px 0;
    background-color: #08162B;
}

.page-contact__form {
    background-color: #10233F;
    border: 1px solid #244D84;
    border-radius: 10px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #244D84;
    border-radius: 5px;
    background-color: #08162B;
    color: #F3F8FF;
    font-size: 1rem;
    box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #AFC4E8;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #1D5FD1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 95, 209, 0.3);
}

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

.page-contact__submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #F3F8FF;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.page-contact__submit-button:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-2px);
}

.page-contact__faq-section {
    padding: 60px 0 80px;
    background-color: #08162B;
}

.page-contact__faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 30px;
}

.page-contact__faq-item {
    background-color: #10233F;
    border: 1px solid #244D84;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.page-contact__faq-item:hover {
    box-shadow: 0 0 10px rgba(29, 95, 209, 0.5);
}

.page-contact__faq-question {
    font-size: 1.15rem;
    color: #F3F8FF;
    padding: 18px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #113B7A;
    border-bottom: 1px solid #1B3357;
}

.page-contact__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #F3F8FF;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-contact__faq-answer {
    font-size: 1rem;
    color: #AFC4E8;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-contact__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-contact__container {
        padding: 15px;
    }

    .page-contact__hero-image {
        max-width: 100%;
        height: auto;
    }

    .page-contact__main-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

    .page-contact__description {
        font-size: 0.9rem;
    }

    .page-contact__channel-grid {
        grid-template-columns: 1fr;
    }

    .page-contact__channel-card {
        padding: 20px;
    }

    .page-contact__form {
        padding: 25px;
    }

    .page-contact__form-input, .page-contact__form-textarea {
        font-size: 0.9rem;
    }

    .page-contact__submit-button {
        font-size: 1rem;
    }

    .page-contact__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-contact__faq-answer {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    /* Ensure all content area images are responsive */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    /* Ensure all images within .page-contact are responsive */
    .page-contact img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-contact__hero-image {
        aspect-ratio: 4 / 3; /* More vertical for mobile hero */
    }
    .page-contact__channel-icon {
        max-width: 150px;
    }
    .page-contact__faq-answer.active {
        padding: 10px 25px;
    }
    .page-contact__section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
}