/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: #4ECDC4;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 2px;
}

.logo p {
    color: #666;
    font-size: 14px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone span {
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.cta-button {
    background: #4ECDC4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #45B7AC;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8fffe 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    padding: 8px 0;
    color: #4ECDC4;
    font-weight: bold;
    font-size: 18px;
}

.cta-button-large {
    background: #4ECDC4;
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #45B7AC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.hero-map {
    width: 100%;
    height: 400px;
}

.hero-map iframe {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #4ECDC4;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.services-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8fffe 100%);
    padding: 30px 40px;
    border-radius: 20px;
    border-left: 5px solid #4ECDC4;
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.1);
}

.services-description p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4ECDC4, #45B7AC);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.25);
    border-color: #4ECDC4;
}

/* Service icon styles removed as emojis are no longer used */

.service-card h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    text-align: justify;
    hyphens: auto;
    word-spacing: 0.5px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8fffe 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
}

.about-text p {
    color: #555;
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
    hyphens: auto;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px 25px;
    border-radius: 15px;
    border-left: 4px solid #4ECDC4;
    box-shadow: 0 3px 15px rgba(78, 205, 196, 0.08);
    position: relative;
}

.about-text p:nth-child(even) {
    background: rgba(248, 255, 254, 0.8);
}

.about-text p::first-line {
    font-weight: 500;
}



/* Diseases Section */
.diseases {
    padding: 80px 0;
    background: #fff;
}

.diseases-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8fffe 100%);
    padding: 35px 40px;
    border-radius: 20px;
    border-left: 5px solid #4ECDC4;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.12);
    position: relative;
}

.diseases-intro::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4ECDC4, #45B7AC);
    border-radius: 50%;
    opacity: 0.1;
}

.diseases-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.diseases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.disease-item {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid #4ECDC4;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.disease-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05), rgba(69, 183, 172, 0.05));
    transition: width 0.3s ease;
}

.disease-item:hover::after {
    width: 100%;
}

.disease-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(78, 205, 196, 0.2);
    border-left-width: 8px;
}

.disease-item h3 {
    color: #333;
    font-size: 21px;
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.disease-item p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    text-align: justify;
    hyphens: auto;
    position: relative;
    z-index: 1;
    word-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7AC 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background: white;
}

.contact-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    background: rgba(255,255,255,0.15);
    padding: 35px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-description p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.8;
    margin: 0;
    color: white;
    font-weight: 400;
}

.contact-content-single {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.contact-info-full {
    max-width: 800px;
    width: 100%;
}

.contact-item {
    margin-bottom: 25px;
    padding: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 0.8;
}

.contact-item:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-item strong {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
    color: white;
    font-weight: 600;
    position: relative;
}

.contact-item strong::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: white;
    margin-top: 8px;
    opacity: 0.6;
}

.contact-item p {
    opacity: 0.92;
    line-height: 1.8;
    font-size: 16px;
    color: white;
    margin: 0;
    text-align: justify;
    hyphens: auto;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    color: #4ECDC4;
    font-size: 24px;
    margin-bottom: 20px;
}

.legal-info p {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
}

.footer-contact h4 {
    color: #4ECDC4;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Policy Pages Styles */
.policy-content {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
}

.policy-content h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
}

.policy-content h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4ECDC4, #44A08D);
    margin: 20px auto;
    border-radius: 2px;
}

.policy-text {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.policy-text h2 {
    color: #4ECDC4;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #4ECDC4;
    padding-left: 15px;
}

.policy-text h2:first-of-type {
    margin-top: 0;
}

.policy-text h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.policy-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-text ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-text li {
    margin-bottom: 8px;
}

.policy-text strong {
    color: #2c3e50;
    font-weight: 600;
}

.back-link {
    text-align: center;
    margin: 30px 0;
}

.footer-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-links a {
    color: #4ECDC4;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #44A08D;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h2 {
        font-size: 36px;
    }
    
    .services-grid,
    .diseases-grid {
        grid-template-columns: 1fr;
    }
    
    .phone {
        align-items: center;
    }
    
    .services-description,
    .diseases-intro,
    .contact-description {
        padding: 30px 25px;
    }
    
    .services-description p,
    .diseases-intro p,
    .contact-description p {
        font-size: 16px;
    }
    
    .service-card,
    .disease-item {
        padding: 30px;
    }
    
    .about-text p {
        padding: 18px 22px;
        font-size: 16px;
    }
    
    /* Policy pages mobile styles */
    .policy-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .policy-text {
        padding: 25px;
        border-radius: 15px;
    }
    
    .policy-text h2 {
        font-size: 1.3rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services,
    .about,
    .diseases,
    .contact {
        padding: 60px 0;
    }
    
    .services-description,
    .diseases-intro,
    .contact-description {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .service-card,
    .disease-item {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .service-card p,
    .disease-item p {
        font-size: 14px;
        text-align: left;
    }
    
    .about-text p {
        padding: 15px 20px;
        font-size: 15px;
        text-align: left;
    }
    
    .contact-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .contact-item p {
        text-align: left;
        font-size: 14px;
    }
    
    /* Policy pages small mobile styles */
    .policy-content h1 {
        font-size: 1.8rem;
    }
    
    .policy-text {
        padding: 20px;
    }
    
    .policy-text h2 {
        font-size: 1.2rem;
    }
    
    .policy-text p {
        font-size: 14px;
        text-align: left;
    }
} 