/* === HEADER LAYOUT === */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.site-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #a20866;

}

.header-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-button {
    background-color: #a20866;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.header-button:hover {
    background-color: #003d80;
}

/* === TOOLTIP === */
.tooltip-button {
    position: relative;
}

.tooltip-button-1 {
    position: relative;
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.1s ease-in-out, visibility 0s;

}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    background-color: #333;
    color: white;
    font-size: 30px;
    border-radius: 6px;
    padding: 4px 8px;
    position: absolute;
    top: -35px;
    right: 0;
    white-space: nowrap;
    z-index: 1000;
    transition: opacity 0.1s ease-in-out, visibility 0s;
}

.tooltip-button-1-text {
    visibility: hidden;
    opacity: 0;
    background-color: #333;
    color: white;
    font-size: 30px;
    border-radius: 6px;
    padding: 4px 8px;
    position: absolute;
    top: -35px;
    right: 0;
    white-space: nowrap;
    z-index: 1000;
    transition: opacity 0.1s ease-in-out, visibility 0s;
}

.tooltip-button:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;

}

.tooltip-button-1:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;

}

/* === BLUE WELCOME BANNER === */
.welcome-banner {
    background-color: #101d6b;
    color: white;
    padding: 15px 20px;
    text-align: center;
}

.welcome-banner h2 {
    margin: 0;
    font-size: 2.0rem;
}

/* === FORM & RESULTS === */

.search-heading-1 {
    text-align: center;
    margin-top: 30px;
    font-size: 1.8rem;
    color: #101d6b;
    font-weight: bold;
}

.search-heading-2 {
    text-align: center;
    margin-top: 30px;
    font-size: 1.5rem;
    color: #101d6b;
    font-weight: bold;
}


#zipForm {
    margin: 30px auto;
    text-align: center;
}

#userZip {
    padding: 10px;
    font-size: 1rem;
    width: 200px;
    margin-right: 10px;
}

#results-info {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}


/* Main content centered */
main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#line {
    /* position: fixed; */
    top: 10rem;
    right: 25rem;
    display: flex;
    color: #101d6b;
    font-size: 2rem;
}

/* Form styling */
#zipForm {
    /* position: fixed; */
    top: 15rem;
    right: 35rem;
    display: flex;
    max-width: 400px;
    width: 100%;
    margin-bottom: 2rem;
}

#zipForm input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

#zipForm button {
    align-items: center;
    padding: 0.75rem 1rem;
    border: none;
    background-color: #101d6b;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background-color 0.3s ease;
}

#zipForm button:hover {
    background-color: #101d6b;
}

/* Results container */

#results {
    display: block;
    /* Stack the cards vertically */
    padding: 20px;
    text-align: center;
}

.center-card {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: left;
    transition: transform 0.2s;
}

.center-card:hover {
    transform: translateY(-5px);
}

.center-card img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 10px;
}

.section-message-1 {
    font-weight: bold;
    font-size: 1.6rem;
    margin: 20px 0 10px;
    color: #a20866;
}

.section-message-2 {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: #101d6b;
}




.center-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #2c3e50;
}

.center-card p {
    margin: 0.5rem 0;
    line-height: 1.4;
}




/* Responsive adjustments */
@media (max-width: 600px) {
    #zipForm {
        flex-direction: column;
    }

    #zipForm input,
    #zipForm button {
        border-radius: 4px;
        width: 100%;
    }

    #zipForm button {
        margin-top: 0.5rem;
    }
}

/* .detail-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.detail-container img {
    margin-top: 1rem;
    max-width: 100%;
    border-radius: 8px;
} */

.back-button {
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    border: none;
    background-color: #101d6b;
    color: #fff;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.back-button:hover {
    background-color: #101d6b;
}

#results-info {
    margin: 1em 0 0.5em;
    font-size: 1.5rem;
    font-weight: 600;
    color: #101d6b;
}

.services-section {
    margin: 30px auto;
    padding: 20px;
    max-width: 700px;
    background-color: #fff;

    /* fbe7f1 Light pastel shade of #a20866 */
    border-left: 5px solid #a20866;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.services-section h2 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #a20866;
}

.services-list {
    list-style-type: disc;
    padding-left: 40px;
    /* color: #444; */
    color: #101d6b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
    text-align: left;
    display: inline-block;
}



/*/
    * .services-list {
        list-style-type: disc;
        padding-left: 40px;
        color: #444;
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 auto;
        text-align: left;
        display: inline-block;
    }

    */
/* 
.services-section {
    margin: 30px auto;
    padding: 20px;
    max-width: 700px;
    background-color: #f9f9f9;
    border-left: 5px solid #101d6b;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.services-section h2 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #101d6b;
}

.services-list {
    list-style: disc;
    padding-left: 20px;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
} */


body {
    font-family: 'Inter', sans-serif;
}

.about-header {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    padding: 1.2rem 0;
    color: #fff;
    border-bottom: 2px solid #eee;
    background-color: #101d6b;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 2rem;
    /* background-color: #fff5f9; */
    width: 100vw;
    box-sizing: border-box;
}

.about-card {
    width: 90%;
    max-width: 700px;
    /* background-color: #fff; */
    border-left: 5px solid #a20866;
    background-color: #fff5f9;

    padding: 1.8rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.about-card:hover {
    transform: translateY(-4px);
}

.about-card h2 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #a20866;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-card p {
    font-size: 1rem;
    color: #333;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.about-extra {
    width: 100%;
    max-width: 700px;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
}

.about-extra a {
    color: #a20866;
    text-decoration: underline;
}

.about-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 3rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.about-intro {
    width: 100%;
    text-align: left;
    padding: 1rem 3rem;
    font-size: 1.6rem;
    /* background-color: #fff5f9; */
    /* Light background to blend in with rest */
}

.about-intro h2 {
    font-size: 1.6rem;
    color: #a20866;
    margin-bottom: 0.5rem;
}

.about-intro p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}


/* .about-intro p {
    font-size: 1.1rem;
    font-weight: 500;
} */

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 2rem;
    /* background-color: #fff5f9; */
    width: 100vw;
    box-sizing: border-box;
}

.team-section {
    padding: 2rem 3rem;
    /* background-color: #fff5f9; */
}

.team-section h2 {
    font-size: 1.8rem;
    color: #a20866;
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    width: 220px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

.team-member:hover {
    transform: scale(1.03);
}

.team-member img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 0.8rem;
}

.team-member h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0.5rem 0 0.2rem;
}

.team-member p {
    font-size: 0.95rem;
    color: #777;
}

.contact-container {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fefefe;
    /* background-color: #f5f5fa; */


}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    /* background-color: #f5f5fa; */

}

.contact-card {
    background-color: #fff5f9;
    text-align: center;
    border: 1px solid #ccc;
    border-left: 5px solid #a20866;
    padding: 1.5rem;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
    margin-top: 0;
    color: #a20866;
}

.contact-card a {
    color: #101d6b;
    text-decoration: underline;
}

.contact-header {
    text-align: center;
    font-size: 1.2rem;
    /* font-weight: 600; */
    padding: 1.2rem 0;
    color: #fff;
    border-bottom: 2px solid #eee;
    background-color: #101d6b;
}

.center-location a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.center-location a:hover {
    text-decoration: underline;
}

.verified-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-size: 1.1rem;
    color: #101d6b;
    font-weight: 500;
    gap: 0.5rem;
}


.verified-icon {
    width: 20px;
    height: 20px;
    fill: #a20866;
}

.mission-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 2rem;
    /* background-color: #fff5f9; */
    width: 100vw;
    box-sizing: border-box;
}

.mission-values {
    background-color: #fff;
    /* background-color: #f9f9fc; */

    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-values h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #a20866;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #444;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.8rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
}



.motivation-section {
    background-color: transparent;
    padding: 2rem 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    text-align: left;
}

/* 
.motivation-section h2 {
    font-size: 2rem;
    color: #a20866;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
} */

/* Stylish section divider */
.section-divider {
    height: 4px;
    width: 80px;
    background-color: #a20866;
    margin: 1rem 0;
    border-radius: 2px;
}

/* Paragraph styling */
.motivation-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #101d6b;
    margin-bottom: 1rem;
}