    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        scroll-behavior: smooth;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: #dc2626;
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #b91c1c;
    }

    /* Container */
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */
    header {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 15px 0;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 60px;
        width: auto;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    nav a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
    }

    nav a:hover {
        color: #dc2626;
    }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .phone-link {
        color: #dc2626;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .btn {
        padding: 12px 30px;
        background: #dc2626;
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s;
    }

    .btn:hover {
        background: #b91c1c;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    }

    .btn-outline {
        background: transparent;
        border: 2px solid #dc2626;
        color: #dc2626;
    }

    .btn-outline:hover {
        background: #fef2f2;
    }

    /* Mobile Menu */
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, #fef2f2 0%, #fff 50%, #fff7ed 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 50px;
        width: 300px;
        height: 300px;
        background: rgba(220, 38, 38, 0.05);
        border-radius: 50%;
        filter: blur(80px);
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
    }

    .hero-text h1 {
        font-size: 3.5rem;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-text .subtitle {
        font-size: 1.5rem;
        color: #4b5563;
        margin-bottom: 15px;
    }

    .hero-text .description {
        font-size: 1.1rem;
        color: #6b7280;
        margin-bottom: 30px;
    }

    .badge {
        display: inline-block;
        background: #fee2e2;
        color: #dc2626;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .cta-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 40px;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .stat-item {
        text-align: left;
    }

    .stat-value {
        font-size: 2rem;
        font-weight: 800;
        color: #dc2626;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #6b7280;
    }

    .hero-image {
        position: relative;
    }

    .hero-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .hero-badge {
        position: absolute;
        bottom: -20px;
        left: -20px;
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        max-width: 250px;
    }

    .hero-badge-content {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .hero-badge-icon {
        width: 50px;
        height: 50px;
        background: #fee2e2;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    /* Section Styles */
    section {
        padding: 80px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1.2rem;
        color: #6b7280;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Why Choose Us */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        border: 2px solid #e5e7eb;
        transition: all 0.3s;
    }

    .feature-card:hover {
        border-color: #dc2626;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: #fee2e2;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        color: #1f2937;
        margin-bottom: 10px;
        text-align: center;
    }

    .feature-card p {
        color: #6b7280;
         text-align: center;
    }

    /* About Doctor */
    .about-doctor {
        background: linear-gradient(135deg, #f9fafb 0%, #fef2f2 100%);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .doctor-image img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .doctor-info h2 {
        font-size: 2.5rem;
        color: #1f2937;
        margin-bottom: 10px;
    }

    .doctor-title {
        font-size: 1.3rem;
        color: #dc2626;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .doctor-qualification {
        font-size: 1.1rem;
        color: #6b7280;
        margin-bottom: 30px;
    }

    .expertise-list {
        list-style: none;
        margin: 30px 0;
    }

    .expertise-list li {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .expertise-list li::before {
        content: '✓';
        color: #dc2626;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .achievements {
        background: white;
        padding: 30px;
        border-radius: 15px;
        margin-top: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .achievements h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #1f2937;
    }

    .achievements ul {
        list-style: none;
    }

    .achievements li {
        padding: 10px 0;
        display: flex;
        gap: 10px;
    }

    .achievements li::before {
        content: '🏆';
        font-size: 1.2rem;
    }

    /* Treatments */
    .treatments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .treatment-card {
        background: white;
        border-radius: 15px;
        border: 2px solid #e5e7eb;
        padding: 30px;
        transition: all 0.3s;
    }

    .treatment-card:hover {
        border-color: #dc2626;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .treatment-card h3 {
        font-size: 1.5rem;
        color: #1f2937;
        margin-bottom: 15px;
    }

    .treatment-card .description {
        color: #6b7280;
        margin-bottom: 20px;
    }

    .benefits {
        margin: 20px 0;
    }

    .benefits h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #1f2937;
    }

    .benefits ul {
        list-style: none;
    }

    .benefits li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
    }

    .benefits li::before {
        content: '✓';
        color: #dc2626;
        font-weight: bold;
    }

    .treatment-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
        margin-top: 20px;
    }

    .treatment-stat {
        text-align: center;
    }

    .treatment-stat-label {
        font-size: 0.8rem;
        color: #6b7280;
        margin-bottom: 5px;
    }

    .treatment-stat-value {
        font-size: 0.95rem;
        font-weight: 600;
        color: #1f2937;
    }

    .treatment-stat-value.success {
        color: #dc2626;
    }

    /* Process Steps */
    .process {
        background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .process-step {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border: 2px solid transparent;
        transition: all 0.3s;
        position: relative;
    }

    .process-step:hover {
        border-color: #dc2626;
        transform: translateY(-5px);
    }

    .process-step::after {
        content: '→';
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        color: #fca5a5;
    }

    .process-step:last-child::after {
        display: none;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #dc2626, #ef4444);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 800;
        margin: 0 auto 20px;
    }

    .process-step h3 {
        font-size: 1.3rem;
        color: #1f2937;
        margin-bottom: 15px;
    }

    .process-step p {
        color: #6b7280;
    }

    /* Testimonials */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonial-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        border: 2px solid #e5e7eb;
        transition: all 0.3s;
    }

    .testimonial-card:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .testimonial-header {
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-bottom: 20px;
    }

    .testimonial-info h4 {
        font-size: 1.2rem;
        color: #1f2937;
        margin-bottom: 5px;
    }

    .testimonial-meta {
        font-size: 0.9rem;
        color: #6b7280;
    }

    .stars {
        color: #fbbf24;
        font-size: 1.2rem;
    }

    .testimonial-text {
        color: #4b5563;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .testimonial-date {
        font-size: 0.85rem;
        color: #9ca3af;
    }

    .rating-summary {
        text-align: center;
        margin-top: 40px;
        padding: 20px;
        background: #fef2f2;
        border-radius: 50px;
        display: inline-block;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .rating-summary .big-rating {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1f2937;
    }

    /* FAQ */
    .faq {
        background: #f9fafb;
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s;
    }

    .faq-item:hover {
        border-color: #dc2626;
    }

    .faq-question {
        padding: 25px 30px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.1rem;
        font-weight: 600;
        color: #1f2937;
        transition: color 0.3s;
    }

    .faq-question:hover {
        color: #dc2626;
    }

    .faq-toggle {
        font-size: 1.5rem;
        transition: transform 0.3s;
    }

    .faq-item.active .faq-toggle {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
    }

    .faq-answer-content {
        padding: 0 30px 25px;
        color: #4b5563;
        line-height: 1.8;
    }

    /* Contact */
    .contact {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        color: white;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .contact-info>p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 40px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .contact-item {
        display: flex;
        gap: 20px;
        align-items: start;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }

    .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .contact-item a {
        color: white;
        text-decoration: none;
        opacity: 0.9;
    }

    .contact-item a:hover {
        opacity: 1;
    }

    .contact-form {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        color: #1f2937;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #dc2626;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-privacy {
        text-align: center;
        font-size: 0.85rem;
        color: #6b7280;
        margin-top: 15px;
    }

    /* Footer */
    footer {
        background: #1f2937;
        color: white;
        padding: 60px 0 30px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-section p {
        color: #ffffff;
        line-height: 1.8;
        font-size: 0.95rem;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    }


    .footer-section a:hover {
        color: #fca5a5;
    }

    .footer-logo {
        filter: brightness(0) invert(1);
        height: 50px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        border-top: 1px solid #374151;
        padding-top: 30px;
        text-align: center;
        color: #9ca3af;
        font-size: 0.9rem;
    }

    .footer-bottom p {
        margin: 5px 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .process-steps {
            grid-template-columns: repeat(2, 1fr);
        }

        .process-step::after {
            display: none;
        }
    }

    @media (max-width: 768px) {
        nav ul {
            display: none;
        }

        .mobile-menu-toggle {
            display: block;
        }

        nav.active ul {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .hero-content,
        .about-content,
        .contact-content {
            grid-template-columns: 1fr;
        }

        .hero-text h1 {
            font-size: 2.5rem;
        }

        .stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .features-grid,
        .treatments-grid {
            grid-template-columns: 1fr;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .process-steps {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
        }

        .cta-buttons {
            flex-direction: column;
        }

        .header-cta {
            display: none;
        }
    }