* {
    font-family: "Satoshi", sans-serif;
}
body {
    background-color: #F6FFF7;
}

.nav-item {
    color: #656565 !important;
}

.nav-item.active {
    color: #97C49C !important;
}


/* Top Divider */
.top-divider {
    padding-top: 100px;
    padding-bottom: 50px;
}

.top-line {
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, #9F9F9F 50%, transparent 100%);
    max-width: 1200px;
    margin: 0 auto;
}



/* CTA Section */
.cta {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5rem 5%;
    overflow: hidden;
    margin-bottom: 5rem;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-top-right-radius: 120px;
    border-bottom-left-radius: 120px;
    filter: brightness(0.55);
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-left: 150px;
}

.cta-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-card {
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.68);
    border: 2px solid #01784B;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(1, 120, 75, 0.15);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #01784B;
    border-radius: 50%;
}
.contact-phone-link {
    text-decoration: none;
    color: #01784B; /* Aceasta este o nuanță de verde des întâlnită în designul spitalului */
}

/* Stil pentru când utilizatorul trece cu mouse-ul peste link (opțional) */
.contact-phone-link:hover {
    text-decoration: underline; /* Poți adăuga subliniere la hover pentru feedback vizual */
}

.email-link {
    text-decoration: none;

    color: #01784B;
}

/* Stil pentru când utilizatorul trece cu mouse-ul peste link (opțional, dar recomandat) */
.email-link:hover {
    text-decoration: underline; /* Adaugă o subliere subtilă la hover */
}


.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-icon svg path {
    fill: white !important;
    stroke: white !important;
}

.contact-info-text {
    font-size: 1rem;
    font-weight: 600;
    color: #01784B;
    line-height: 1.4;
}

/* Mobile Responsive for CTA */
@media (max-width: 768px) {
    .top-line {
        background: transparent;
    }
    header {
        background-color: #00000033;
    }
    .cta {
        min-height: auto;
        padding: 3rem 5%;
    }

    .cta-bg {
        border-top-right-radius: 60px;
        border-bottom-left-radius: 60px;
    }

    .cta-container {
        max-width: 100%;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 2em;
        text-align: center;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .contact-info-item {
        padding: 1rem 1.2rem;
    }

    .contact-info-icon {
        width: 35px;
        height: 35px;
    }

    .contact-info-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-info-text {
        font-size: 0.9rem;
    }
}
