.page-contact {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    background-color: #FFFFFF;
}

.page-contact__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Minimum height for hero section */
    background-color: #000000; /* Dark background for hero content */
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim the image to make text stand out */
}

.page-contact__hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    color: #FFFFFF;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-contact__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-contact__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-contact__button--primary {
    background-color: #000000; /* Main color */
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-contact__button--primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #000000;
}

.page-contact__button--secondary {
    background-color: #FCBC45; /* Login color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-contact__button--secondary:hover {
    background-color: #e0a73d;
    color: #000000;
    border-color: #e0a73d;
}

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

.page-contact__methods-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #000000;
}

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

.page-contact__method-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-contact__method-icon {
    width: 200px; /* Enforcing minimum size for content images */
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

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

.page-contact__button--tertiary {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-contact__button--tertiary:hover {
    background-color: #333333;
    border-color: #333333;
}

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

.page-contact__form-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__form-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.7;
    display: block;
}

.page-contact__form-content {
    padding: 40px;
    flex: 1;
    min-width: 300px;
    color: #FFFFFF;
}

.page-contact__form-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-contact__form-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

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

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

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

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

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

.page-contact__button--submit {
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 25px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-contact__button--submit:hover {
    background-color: #e0a73d;
}

.page-contact__faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
    background-color: #f8f8f8;
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 12px;
}

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

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

.page-contact__button--link {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-contact__button--link:hover {
    background-color: #333333;
    border-color: #333333;
}

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

.page-contact__social-media-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #000000;
}

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

.page-contact__social-icon-link {
    display: block;
    transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
    transform: translateY(-5px) scale(1.05);
}

.page-contact__social-icon {
    width: 200px; /* Enforcing minimum size for content images */
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 2.8em;
    }
    .page-contact__hero-description {
        font-size: 1.1em;
    }
    .page-contact__methods-title,
    .page-contact__form-title,
    .page-contact__faq-title,
    .page-contact__social-media-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section {
        min-height: 400px;
    }
    .page-contact__hero-title {
        font-size: 2.2em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__hero-actions {
        flex-direction: column;
    }
    .page-contact__button {
        width: 100%;
        max-width: 300px;
    }
    .page-contact__methods-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__form-container {
        flex-direction: column;
    }
    .page-contact__form-image {
        height: 250px; /* Adjust height for mobile */
    }
    .page-contact__form-content {
        padding: 30px;
    }
    .page-contact__form-title {
        font-size: 2em;
    }
    .page-contact__social-icons {
        flex-direction: column;
        gap: 20px;
    }

    /* Enforce image responsiveness and minimum size */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
    .page-contact__method-icon,
    .page-contact__social-icon {
        min-width: 200px;
        min-height: 200px;
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 1.8em;
    }
    .page-contact__hero-description {
        font-size: 0.9em;
    }
    .page-contact__methods-title,
    .page-contact__form-title,
    .page-contact__faq-title,
    .page-contact__social-media-title {
        font-size: 1.8em;
    }
    .page-contact__form-content {
        padding: 20px;
    }
}