@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', 'Arial', 'Helvetica', sans-serif;
    line-height: 1.4em;
    color: #2F2E2E;
    overflow-x: hidden;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background-color: #F2F2F2;
    padding: 14px 0;
    text-align: center;
    font-size: 14px;
    border-bottom: none;
}

.top-banner p {
    margin: 0;
}

.health-declaration-link {
    color: #0DB26B;
    text-decoration: underline;
    cursor: pointer;
}

.health-declaration-link:hover {
    color: #0A9A5A;
}

/* Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 28px;
    font-weight: 500;
    color: #9155A7;
    text-decoration: none;
    margin-bottom: 5px;
    font-family: 'Raleway', sans-serif;
}

.tagline {
    font-size: 14px;
    color: #605E5E;
    font-style: normal;
    font-weight: 300;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #2F2E2E;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.4s ease;
    font-family: 'Raleway', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #9155A7;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 200px;
    padding: 10px 0;
    display: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-transform: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.login-btn {
    background-color: #9155A7;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    transition: background-color 0.4s ease;
    font-family: 'Raleway', sans-serif;
}

.login-btn:hover {
    background-color: #7A4A8A;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2F2E2E;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #9155A7 0%, #7A4A8A 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
    line-height: 1.4em;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.4em;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #9155A7;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 400;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Raleway', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.feature-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 48px;
    color: #9155A7;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #9155A7;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

.feature-card p {
    color: #605E5E;
    margin-bottom: 20px;
    line-height: 1.4em;
    font-size: 16px;
    font-weight: 300;
}

.btn-link {
    color: #0DB26B;
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
    font-family: 'Raleway', sans-serif;
}

.btn-link:hover {
    gap: 10px;
}

/* Consultation Section */
.consultation-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.consultation-content h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #2F2E2E;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 60px;
    color: #9155A7;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
}

.page-content h2 {
    font-size: 34px;
    color: #9155A7;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.page-content h3 {
    font-size: 22px;
    color: #0DB26B;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.page-content p {
    font-size: 16px;
    color: #605E5E;
    line-height: 1.4em;
    margin-bottom: 20px;
    font-weight: 300;
}

.page-content ul, .page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 16px;
    color: #605E5E;
    line-height: 1.4em;
    margin-bottom: 10px;
    font-weight: 300;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #2F2E2E;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #CCCCCC;
    border-radius: 0;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: #2F2E2E;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9155A7;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Departments Grid */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.department-card {
    background-color: #FFFFFF;
    padding: 30px;
    border: 1px solid #E0E0E0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(145, 85, 167, 0.2);
}

.department-card h3 {
    color: #9155A7;
    margin-bottom: 15px;
}

/* Insurance List */
.insurance-list {
    list-style: none;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.insurance-list li {
    background-color: #F9F9F9;
    padding: 20px;
    border-left: 4px solid #0DB26B;
    margin-bottom: 0;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 34px;
    color: #9155A7;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

.approach-content,
.why-choose-content,
.specialists-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-content p,
.why-choose-content p,
.specialists-content p {
    font-size: 16px;
    color: #605E5E;
    line-height: 1.4em;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Insurance Section */
.insurance-section {
    padding: 80px 0;
    background-color: #fff;
}

.insurance-content {
    text-align: center;
}

.insurance-content p {
    font-size: 16px;
    color: #605E5E;
    font-weight: 300;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

/* Specialists Section */
.specialists-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #9155A7 0%, #7A4A8A 100%);
    color: #fff;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
}

.newsletter-message {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}

/* Floating Book Now Button */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.floating-book-btn.show {
    display: block;
}

/* Footer */
.main-footer {
    background-color: #6DCCA3;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 15px;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

.social-links {
    display: flex;
    list-style: none;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 15px;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .login-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .floating-book-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .features-section,
    .approach-section,
    .insurance-section,
    .why-choose-section,
    .specialists-section,
    .newsletter-section {
        padding: 60px 0;
    }
}

