.page-contact {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-contact__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px;
    background-color: #F4F7FB;
    position: relative;
    overflow: hidden;
}

.page-contact__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-contact__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-contact__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #2F6BFF, #6FA3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-contact__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #1F2D3D;
}

.page-contact__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
    min-width: 180px;
    text-align: center;
    font-size: 1.1em;
}

.page-contact__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.page-contact__channels-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-contact__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
    background: linear-gradient(90deg, #2F6BFF, #6FA3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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

.page-contact__channel-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF;
}

.page-contact__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-contact__channel-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin-bottom: 25px;
    border-radius: 8px;
}

.page-contact__channel-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact__channel-description {
    font-size: 1em;
    color: #1F2D3D;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-contact__email-address,
.page-contact__phone-number {
    font-weight: bold;
    color: #2F6BFF;
    margin-bottom: 20px;
    font-size: 1.1em;
    display: block;
}

.page-contact__channel-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.page-contact__channel-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%);
}

.page-contact__faq-section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-contact__faq-list {
    margin-top: 30px;
    text-align: left;
}

.page-contact__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF;
}

.page-contact__faq-question {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-contact__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #2F6BFF;
    transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
    font-size: 1em;
    color: #1F2D3D;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-contact__faq-answer.is-active {
    max-height: 200px; /* Adjust based on expected content */
    opacity: 1;
    padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-contact__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-contact__description {
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__channels-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__channel-icon {
        max-width: 200px; /* Ensure images are not smaller than 200px */
        width: 100%;
        height: auto;
    }
    .page-contact__hero-image,
    .page-contact__channel-card img,
    .page-contact__faq-item img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section,
    .page-contact__channels-section,
    .page-contact__faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-contact__hero-image,
    .page-contact__channel-card img,
    .page-contact__faq-item img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure all content area images are at least 200px wide for display, if they are not 100% width */
    .page-contact img:not(.shared-header img):not(.shared-footer img) {
        min-width: 200px;
        min-height: 200px;
        width: 100%; /* Override to ensure responsiveness */
        height: auto;
    }
    .page-contact__channel-icon {
        max-width: 250px; /* Maintain a reasonable size while being responsive */
    }
}

@media (max-width: 549px) {
    .page-contact__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }
    .page-contact__section-title {
        font-size: 1.6em;
    }
    .page-contact__cta-button {
        width: 100%;
        max-width: 280px;
    }
    .page-contact__channel-button {
        max-width: 180px;
    }
    .page-contact__faq-question {
        font-size: 1.2em;
    }
    .page-contact__faq-answer {
        font-size: 0.95em;
    }
}