.page-contact-us {
    background-color: #0d0d0d; /* Dark background for overall page content */
    color: #f5f5f5;
    font-family: Arial, sans-serif;
}

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

.page-contact-us__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 60px; /* Small top padding, larger bottom padding */
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.page-contact-us__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit hero image height */
    overflow: hidden;
    margin-bottom: 30px;
}

.page-contact-us__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-contact-us__hero-content {
    position: relative; /* Ensure content is above any potential background elements */
    z-index: 1;
    padding: 0 20px;
    max-width: 900px;
}

.page-contact-us__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FCBC45; /* Golden accent for main title */
    letter-spacing: 1px;
}

.page-contact-us__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e5e5e5;
}

.page-contact-us__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Text color for golden button */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-contact-us__cta-button:hover {
    background-color: #e0a830;
    transform: translateY(-2px);
}

.page-contact-us__form-section, .page-contact-us__channels-section, .page-contact-us__why-us-section {
    padding: 60px 20px;
    text-align: center;
}

.page-contact-us__form-section {
    background-color: #0d0d0d;
}

.page-contact-us__channels-section {
    background-color: #1a1a1a;
}

.page-contact-us__why-us-section {
    background-color: #0d0d0d;
}

.page-contact-us__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FCBC45;
}

.page-contact-us__section-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e5e5e5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact-us__contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-contact-us__form-group {
    margin-bottom: 25px;
}

.page-contact-us__form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #e5e5e5;
    font-size: 1rem;
}

.page-contact-us__form-input,
.page-contact-us__form-textarea {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 12px 10px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.page-contact-us__form-input:focus,
.page-contact-us__form-textarea:focus {
    border-color: #FCBC45;
    outline: none;
}

.page-contact-us__form-textarea {
    resize: vertical;
}

.page-contact-us__submit-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Text color for golden button */
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact-us__submit-button:hover {
    background-color: #e0a830;
    transform: translateY(-2px);
}

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

.page-contact-us__channel-card {
    background-color: #0d0d0d;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-contact-us__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-contact-us__channel-icon {
    width: 400px; /* Display area width */
    height: 300px; /* Display area height */
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-contact-us__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FCBC45;
}

.page-contact-us__card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e5e5e5;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-contact-us__channel-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FCBC45;
    color: #000000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-contact-us__channel-button:hover {
    background-color: #e0a830;
    transform: translateY(-2px);
}

.page-contact-us__features-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: left;
}

.page-contact-us__feature-item {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact-us__feature-icon {
    width: 200px; /* Enforce minimum size for content images as per strict rule */
    height: 200px; /* Enforce minimum size for content images as per strict rule */
    margin-right: 15px;
    flex-shrink: 0;
    object-fit: contain;
}

.page-contact-us__feature-text {
    font-size: 1rem;
    color: #e5e5e5;
    line-height: 1.5;
}

.page-contact-us__feature-text strong {
    color: #FCBC45;
}

@media (max-width: 768px) {
    .page-contact-us__hero-section {
        padding-bottom: 40px;
    }

    .page-contact-us__main-title {
        font-size: 2rem;
    }

    .page-contact-us__description {
        font-size: 1rem;
    }

    .page-contact-us__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-contact-us__form-section, .page-contact-us__channels-section, .page-contact-us__why-us-section {
        padding: 40px 15px;
    }

    .page-contact-us__section-title {
        font-size: 1.8rem;
    }

    .page-contact-us__section-description {
        font-size: 0.9rem;
    }

    .page-contact-us__contact-form {
        padding: 25px;
    }

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

    .page-contact-us__features-list {
        grid-template-columns: 1fr;
    }
    
    .page-contact-us__hero-image,
    .page-contact-us__channel-icon {
        max-width: 100%;
        height: auto;
    }

    /* Feature icons now stack and maintain 200x200 */
    .page-contact-us__feature-item {
        flex-direction: column;
        text-align: center;
    }

    .page-contact-us__feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 200px;
        height: 200px;
    }

    /* Ensure all images within the content area are responsive and do not overflow */
    .page-contact-us img {
        max-width: 100%;
        height: auto;
    }
    /* Re-apply min-width/height for content area images to ensure 200px minimum even with max-width: 100% if needed */
    .page-contact-us__channel-icon, .page-contact-us__feature-icon {
        min-width: 200px;
        min-height: 200px;
    }
}