.page-contact {
    color: #ffffff; /* Light text for dark body background */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-contact__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #0A1931; /* Main brand color */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-contact__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Subtle background image */
}

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

.page-contact__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.page-contact__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for buttons */
    color: #0A1931; /* Dark text on accent button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-contact__channels-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 40px;
}

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

.page-contact__channel-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__channel-icon {
    width: 400px; /* Enforcing minimum 200px for content images */
    height: 300px;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

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

.page-contact__channel-button {
    display: inline-block;
    background-color: #0A1931;
    color: #FFD700;
    padding: 12px 25px;
    border: 2px solid #FFD700;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__channel-button:hover {
    background-color: #FFD700;
    color: #0A1931;
}

.page-contact__form-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 30px;
}

.page-contact__contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #FFD700;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1em;
    box-sizing: border-box;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    outline: none;
    border-color: #e6c200;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.page-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact__form-submit-button {
    background-color: #FFD700;
    color: #0A1931;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: center;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-contact__social-description {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 40px;
}

.page-contact__social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.page-contact__social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 15px 30px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__social-link:hover {
    background-color: rgba(255, 215, 0, 0.2); /* Lighter accent background on hover */
    transform: translateY(-3px);
}

.page-contact__social-link img {
    width: 200px; /* Enforcing min 200px for all images in content area */
    height: 200px;
    max-width: 100%; /* Ensure responsiveness */
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 3em;
    }
    .page-contact__channels-title,
    .page-contact__social-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-contact {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-contact__hero-section {
        padding: 60px 15px;
        min-height: 400px;
    }
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description {
        font-size: 1.1em;
    }
    .page-contact__channels-title,
    .page-contact__form-title,
    .page-contact__social-title {
        font-size: 2em;
    }
    .page-contact__channels-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__channel-icon {
        width: 250px; /* Maintain minimum 200px */
        height: auto;
    }
    .page-contact__channel-card {
        padding: 25px;
    }
    .page-contact__form-section {
        margin: 40px auto;
        padding: 30px 15px;
    }
    .page-contact__social-links {
        flex-direction: column;
        align-items: center;
    }
    /* Mobile content image constraint */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
    .page-contact__social-link img {
        width: 200px; /* Enforcing min 200px for all images in content area */
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__channels-title,
    .page-contact__form-title,
    .page-contact__social-title {
        font-size: 1.8em;
    }
    .page-contact__hero-button,
    .page-contact__channel-button,
    .page-contact__form-submit-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-contact__social-link {
        font-size: 1em;
        padding: 12px 20px;
    }
}

/* Ensure no filter is used on images */
.page-contact img {
    filter: none;
}