.page-contact-us {
    color: #333333; /* Dark text for default light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-contact-us__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    background-color: #007bff; /* Main brand color */
    color: #ffffff;
    text-align: center;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-contact-us__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.page-contact-us__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* Auxiliary color for emphasis */
}

.page-contact-us__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact-us__hero-button {
    display: inline-block;
    background-color: #ffc107; /* Auxiliary color */
    color: #007bff; /* Main color for text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact-us__hero-button:hover {
    background-color: #e0a800;
    color: #0056b3;
}

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

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

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

.page-contact-us__section-title {
    font-size: 2.2em;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact-us__section-description {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-contact-us__method-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-contact-us__method-card:hover {
    transform: translateY(-5px);
}

.page-contact-us__card-icon {
    width: 200px; /* Minimum 200px */
    height: 200px; /* Minimum 200px */
    object-fit: contain;
    margin-bottom: 20px;
}

.page-contact-us__card-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact-us__card-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact-us__card-button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact-us__card-button:hover {
    background-color: #0056b3;
}

.page-contact-us__hours-location {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-contact-us__info-grid {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-contact-us__info-block {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-contact-us__info-subtitle {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-contact-us__info-text {
    color: #666666;
    font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact-us__hero-title {
        font-size: 2em;
    }

    .page-contact-us__hero-description {
        font-size: 1em;
    }

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

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

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

    /* Ensure content area images do not overflow */
    .page-contact-us img {
        max-width: 100%;
        height: auto;
    }
    .page-contact-us__card-icon {
        width: 200px; /* Maintain minimum size */
        height: 200px; /* Maintain minimum size */
    }
}