            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                line-height: 1.6;
                color: #333;
                background: #f8faff;
            }

            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }

            /* Navigation */
            .navbar {
                background: linear-gradient(135deg, #1e3a8a, #3b82f6);
                padding: 1rem 0;
                position: fixed;
                top: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
            }

            .nav-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }

            .nav-logo {
                cursor: pointer;
            }

            .nav-logo h2 {
                color: white;
                font-size: 1.8rem;
                font-weight: bold;
                transition: all 0.3s ease;
            }

            .nav-logo h2:hover {
                color: #60a5fa;
                transform: scale(1.05);
            }

            .nav-logo span {
                color: #60a5fa;
            }

            .nav-menu {
                display: flex;
                list-style: none;
                gap: 0.5rem;
                align-items: center;
            }

            .nav-link {
                color: white;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
                padding: 0.7rem 1.2rem;
                border-radius: 8px;
                font-size: 0.95rem;
            }

            .nav-link:hover, .nav-link.active {
                color: #60a5fa;
                background: rgba(255, 255, 255, 0.1);
                transform: translateY(-1px);
            }

            .consult-btn {
                background: linear-gradient(135deg, #059669, #10b981);
                color: white;
                border: none;
                padding: 0.8rem 1.8rem;
                border-radius: 25px;
                font-weight: bold;
                cursor: pointer;
                transition: all 0.3s ease;
                font-size: 0.9rem;
                margin-left: 1rem;
            }

            .consult-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
                background: linear-gradient(135deg, #047857, #059669);
            }

            /* Hero Section */
            .hero {
                background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #0ea5e9 100%);
                color: white;
                padding: 140px 0 100px;
                text-align: center;
                position: relative;
                overflow: hidden;
            }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff08"><polygon points="0,0 1000,0 1000,100"/></svg>') repeat-x;
                opacity: 0.1;
            }

            .hero-content {
                position: relative;
                z-index: 2;
            }

            .hero h1 {
                font-size: 3.5rem;
                margin-bottom: 1.5rem;
                line-height: 1.2;
                font-weight: 700;
            }

            .highlight {
                color: #10b981;
                text-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
            }

            .hero p {
                font-size: 1.3rem;
                margin-bottom: 2.5rem;
                opacity: 0.95;
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.7;
            }

            .hero-buttons {
                display: flex;
                gap: 1.5rem;
                justify-content: center;
                flex-wrap: wrap;
            }

            .cta-btn {
                background: linear-gradient(135deg, #10b981, #059669);
                color: white;
                text-decoration: none;
                padding: 1.2rem 2.5rem;
                border-radius: 50px;
                font-weight: bold;
                transition: all 0.3s ease;
                border: none;
                cursor: pointer;
                font-size: 1.1rem;
                box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
            }

            .cta-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
            }

            .cta-btn.secondary {
                background: rgba(255, 255, 255, 0.15);
                border: 2px solid rgba(255, 255, 255, 0.3);
                backdrop-filter: blur(10px);
            }

            .cta-btn.secondary:hover {
                background: white;
                color: #1e3a8a;
            }

            /* Free Analysis Section */
            .free-analysis {
                background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
                padding: 80px 0;
                position: relative;
            }

            .analysis-container {
                display: grid;
                grid-template-columns: 1fr 1.2fr;
                gap: 4rem;
                align-items: center;
            }

            .analysis-info h2 {
                color: #1e3a8a;
                font-size: 2.8rem;
                margin-bottom: 1.5rem;
                font-weight: 700;
                line-height: 1.3;
            }

            .analysis-info .highlight-green {
                color: #059669;
            }

            .analysis-info p {
                color: #64748b;
                font-size: 1.2rem;
                margin-bottom: 2rem;
                line-height: 1.7;
            }

            .analysis-features {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .feature-item {
                display: flex;
                align-items: center;
                gap: 0.8rem;
                padding: 1rem;
                background: white;
                border-radius: 12px;
                box-shadow: 0 4px 10px rgba(16, 185, 129, 0.1);
                border: 1px solid rgba(16, 185, 129, 0.1);
            }

            .feature-icon {
                font-size: 1.5rem;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, #10b981, #059669);
                color: white;
                border-radius: 50%;
            }

            .analysis-form {
                background: white;
                padding: 3rem;
                border-radius: 25px;
                box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
                border-top: 5px solid #10b981;
            }

            .form-header {
                text-align: center;
                margin-bottom: 2.5rem;
            }

            .form-header h3 {
                color: #1e3a8a;
                font-size: 1.8rem;
                margin-bottom: 0.5rem;
            }

            .form-header p {
                color: #64748b;
                font-size: 1rem;
            }

            .form-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }

            .form-group {
                margin-bottom: 1.5rem;
            }

            .form-group.full-width {
                grid-column: 1 / -1;
            }

            .form-group label {
                display: block;
                margin-bottom: 0.7rem;
                font-weight: 600;
                color: #374151;
                font-size: 0.95rem;
            }

            .required::after {
                content: ' *';
                color: #ef4444;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                width: 100%;
                padding: 1rem;
                border: 2px solid #e5e7eb;
                border-radius: 12px;
                font-size: 1rem;
                transition: all 0.3s ease;
                background: #fafafa;
            }

            .form-group input:focus,
            .form-group select:focus,
            .form-group textarea:focus {
                outline: none;
                border-color: #10b981;
                background: white;
                box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
            }

            .hair-loss-level {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 1rem;
                margin-top: 0.5rem;
            }

            .level-option {
                text-align: center;
                padding: 1rem 0.5rem;
                border: 2px solid #e5e7eb;
                border-radius: 12px;
                cursor: pointer;
                transition: all 0.3s ease;
                background: #fafafa;
            }

            .level-option:hover {
                border-color: #10b981;
                background: rgba(16, 185, 129, 0.05);
            }

            .level-option.selected {
                border-color: #10b981;
                background: rgba(16, 185, 129, 0.1);
                color: #059669;
                font-weight: 600;
            }

            .level-option .norwood-icon {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }

            .submit-analysis {
                background: linear-gradient(135deg, #10b981, #059669);
                color: white;
                border: none;
                padding: 1.2rem 2.5rem;
                border-radius: 50px;
                font-size: 1.1rem;
                font-weight: bold;
                cursor: pointer;
                transition: all 0.3s ease;
                width: 100%;
                margin-top: 1rem;
            }

            .submit-analysis:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
            }

            /* About Section */
            .about {
                padding: 80px 0;
                background: white;
            }

            .section-title {
                text-align: center;
                font-size: 2.5rem;
                color: #1e3a8a;
                margin-bottom: 1rem;
                font-weight: 700;
            }

            .section-subtitle {
                text-align: center;
                color: #64748b;
                font-size: 1.2rem;
                margin-bottom: 3rem;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }

            .about-content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
            }

            .about-text h3 {
                color: #1e3a8a;
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
                font-weight: 600;
            }

            .about-text p {
                color: #64748b;
                margin-bottom: 2rem;
                line-height: 1.8;
                font-size: 1.1rem;
            }

            .features-list {
                list-style: none;
            }

            .features-list li {
                display: flex;
                align-items: center;
                gap: 1.2rem;
                margin-bottom: 1.5rem;
                padding: 1.5rem;
                background: #f8faff;
                border-radius: 15px;
                border-left: 5px solid #10b981;
                transition: all 0.3s ease;
            }

            .features-list li:hover {
                transform: translateX(5px);
                box-shadow: 0 5px 15px rgba(16, 185, 129, 0.1);
            }

            .feature-icon-about {
                font-size: 2.5rem;
                width: 60px;
                height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, #10b981, #059669);
                color: white;
                border-radius: 50%;
            }

            /* Services Section */
            .services {
                padding: 80px 0;
                background: linear-gradient(135deg, #f8faff, #eff6ff);
            }

            .services-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2.5rem;
            }

            .service-card {
                background: white;
                padding: 3rem 2.5rem;
                border-radius: 25px;
                box-shadow: 0 15px 35px rgba(30, 58, 138, 0.08);
                transition: all 0.3s ease;
                border-top: 5px solid #10b981;
                position: relative;
            }

            .service-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
            }

            .service-icon {
                font-size: 3.5rem;
                margin-bottom: 1.5rem;
                color: #10b981;
            }

            .service-card h3 {
                color: #1e3a8a;
                font-size: 1.6rem;
                margin-bottom: 1rem;
                font-weight: 600;
            }

            .service-card p {
                color: #64748b;
                margin-bottom: 2rem;
                line-height: 1.7;
                font-size: 1.05rem;
            }

            .service-price {
                color: #059669;
                font-weight: bold;
                font-size: 1.2rem;
                margin-bottom: 1.5rem;
                padding: 0.8rem 1.5rem;
                background: linear-gradient(135deg, #f0fdf4, #dcfce7);
                border-radius: 15px;
                display: inline-block;
                border: 2px solid rgba(5, 150, 105, 0.1);
            }

            .service-features {
                list-style: none;
                margin-bottom: 2.5rem;
            }

            .service-features li {
                color: #64748b;
                margin-bottom: 0.8rem;
                padding-left: 1.8rem;
                position: relative;
                font-size: 0.95rem;
            }

            .service-features li::before {
                content: '✓';
                position: absolute;
                left: 0;
                color: #059669;
                font-weight: bold;
                font-size: 1.2rem;
            }

            /* Comments Section */
            .comments {
                padding: 80px 0;
                background: white;
            }


            /* Rating Selection Styles */
    .rating-option {
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 15px;
    }

    .rating-option:hover {
        background: rgba(16, 185, 129, 0.05);
        transform: scale(1.05);
        padding: 1rem;
    }

    .rating-option.selected {
        background: rgba(16, 185, 129, 0.1);
        transform: scale(1.05);
        padding: 1rem;
    }

    /* Comment Form Styles */
    .comment-form-section {
        margin-top: 3rem;
        animation: slideInUp 0.6s ease;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* New Comment Animation */
    .new-comment {
        animation: highlightNew 3s ease;
    }

    @keyframes highlightNew {
        0% { background: rgba(16, 185, 129, 0.2); }
        100% { background: transparent; }
    }
            .comments-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2.5rem;
            }

            .comment-card {
                background: linear-gradient(135deg, #f8faff, #eff6ff);
                padding: 2.5rem;
                border-radius: 20px;
                box-shadow: 0 10px 25px rgba(30, 58, 138, 0.08);
                border-left: 5px solid #10b981;
                transition: all 0.3s ease;
            }

            .comment-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 35px rgba(30, 58, 138, 0.12);
            }

            .comment-header {
                display: flex;
                align-items: center;
                gap: 1rem;
                margin-bottom: 1.5rem;
            }

            .comment-avatar {
                width: 55px;
                height: 55px;
                background: linear-gradient(135deg, #10b981, #059669);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: bold;
                font-size: 1.3rem;
            }

            .stars {
                color: #fbbf24;
                font-size: 1.3rem;
                margin-top: 0.3rem;
            }

            /* Gallery Section */
            .gallery {
                padding: 80px 0;
                background: linear-gradient(135deg, #f8faff, #eff6ff);
            }

            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2rem;
            }

            .gallery-item {
                background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 15px 30px rgba(30, 58, 138, 0.08);
                transition: all 0.3s ease;
                cursor: pointer;
            }

            .gallery-item:hover {
                transform: translateY(-8px);
                box-shadow: 0 25px 45px rgba(30, 58, 138, 0.15);
            }

            .gallery-image {
    width: 100%;
    height: 250px; /* Sabit bir yükseklik belirledim */
    object-fit: cover; /* Görüntünün oranını bozmadan kutuyu doldurur */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

            .gallery-info {
                padding: 1.5rem;
            }

            .gallery-info h4 {
                color: #1e3a8a;
                margin-bottom: 0.5rem;
                font-weight: 600;
            }

            /* FAQ Section */
            .faq {
                padding: 80px 0;
                background: white;
            }

            .faq-container {
                max-width: 800px;
                margin: 0 auto;
            }

            .faq-item {
                background: white;
                margin-bottom: 1.5rem;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 8px 25px rgba(30, 58, 138, 0.08);
                border: 2px solid #f1f5f9;
            }

            .faq-question {
                padding: 2rem;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-weight: 600;
                color: #1e3a8a;
                font-size: 1.1rem;
                transition: all 0.3s ease;
            }

            .faq-question:hover {
                background: #f8faff;
                color: #10b981;
            }

            .faq-toggle {
                font-size: 1.8rem;
                color: #10b981;
                font-weight: bold;
                transition: transform 0.3s ease;
            }

            .faq-answer {
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: all 0.4s ease;
            }

            .faq-answer.active {
                padding: 0 2rem 2rem 2rem;
                max-height: 300px;
            }

            .faq-answer p {
                color: #64748b;
                line-height: 1.7;
                font-size: 1.05rem;
            }

            /* Contact Section */
            .contact {
                padding: 80px 0;
                background: linear-gradient(135deg, #f8faff, #eff6ff);
            }

            .contact-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }

            .contact-info h3 {
                color: #1e3a8a;
                font-size: 2rem;
                margin-bottom: 2rem;
                font-weight: 600;
            }

            .contact-item {
                display: flex;
                align-items: flex-start;
                gap: 1.2rem;
                margin-bottom: 2rem;
                padding: 2rem;
                background: white;
                border-radius: 20px;
                box-shadow: 0 8px 25px rgba(30, 58, 138, 0.08);
                transition: all 0.3s ease;
            }

            .contact-item:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 35px rgba(30, 58, 138, 0.12);
            }

            .contact-icon {
                font-size: 1.8rem;
                color: white;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, #10b981, #059669);
                border-radius: 50%;
                flex-shrink: 0;
            }

            /* Footer */
            .footer {
                background: linear-gradient(135deg, #1e3a8a, #3b82f6);
                color: white;
                padding: 4rem 0 1rem;
                position: relative;
            }

            .footer-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 3rem;
                margin-bottom: 3rem;
            }

            .footer-about h3 {
                color: #60a5fa;
                margin-bottom: 1.5rem;
                font-size: 1.6rem;
            }

            .footer-about p {
                opacity: 0.9;
                line-height: 1.7;
                font-size: 1.05rem;
            }

            .footer-links h4,
            .footer-contact h4 {
                margin-bottom: 1.5rem;
                color: #60a5fa;
                font-size: 1.3rem;
            }

            .footer-links ul {
                list-style: none;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.8);
                text-decoration: none;
                transition: all 0.3s ease;
                display: block;
                padding: 0.5rem 0;
                font-size: 1.05rem;
            }

            .footer-links a:hover {
                color: #60a5fa;
                transform: translateX(5px);
            }

            .footer-contact p {
                opacity: 0.9;
                margin-bottom: 0.8rem;
                font-size: 1.05rem;
            }

            .footer-bottom {
                border-top: 1px solid rgba(255, 255, 255, 0.2);
                padding-top: 2rem;
                text-align: center;
                opacity: 0.8;
                font-size: 1.05rem;
            }

            /* Float Buttons */
            

            

   

            /* Modal Styles */
            .modal {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.8);
                z-index: 2000;
                animation: fadeIn 0.3s ease;
            }

            .modal.active {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 2rem;
            }

            .modal-content {
                background: white;
                border-radius: 25px;
                width: 90%;
                max-width: 600px;
                max-height: 90vh;
                overflow-y: auto;
                animation: slideIn 0.3s ease;
            }

            .modal-header {
                background: linear-gradient(135deg, #1e3a8a, #3b82f6);
                color: white;
                padding: 2.5rem;
                text-align: center;
                border-radius: 25px 25px 0 0;
                position: relative;
            }

            .close {
                position: absolute;
                top: 15px;
                right: 25px;
                color: white;
                font-size: 2.2rem;
                cursor: pointer;
                opacity: 0.8;
                transition: opacity 0.3s ease;
            }

            .close:hover {
                opacity: 1;
                transform: scale(1.1);
            }

            .modal-body {
                padding: 2.5rem;
            }

            /* Animations */
            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }

            @keyframes slideIn {
                from {
                    opacity: 0;
                    transform: translateY(-50px) scale(0.9);
                }
                to {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
            }

            /* Responsive */
            @media (max-width: 768px) {
                .hero h1 {
                    font-size: 2.8rem;
                }

                .hero p {
                    font-size: 1.1rem;
                }

                .analysis-container,
                .about-content,
                .contact-grid {
                    grid-template-columns: 1fr;
                }

                .form-grid {
                    grid-template-columns: 1fr;
                }

                .hair-loss-level {
                    grid-template-columns: 1fr 1fr;
                }

                .analysis-features {
                    grid-template-columns: 1fr;
                }

                .nav-menu {
                    flex-direction: column;
                    gap: 1rem;
                }

                .hamburger {
                    display: flex;
                }

                .nav-menu {
                    position: absolute;
                    top: 100%;
                    left: -100%;
                    width: 100%;
                    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
                    flex-direction: column;
                    padding: 2rem 0;
                    transition: left 0.3s ease;
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                }

                .nav-menu.active {
                    left: 0;
                }

                .consult-btn {
                    margin-left: 0;
                    margin-top: 1rem;
                }
            }

            .hamburger {
                display: none;
                flex-direction: column;
                cursor: pointer;
            }

            .bar {
                width: 25px;
                height: 3px;
                background: white;
                margin: 3px 0;
                transition: 0.3s;
            }

            @media (max-width: 768px) {
                .hamburger {
                    display: flex;
                }
            }

            /* Admin Panel Styles */
            .admin-icon {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.admin-icon:hover {
    transform: scale(1.1);
}

            

           

            

            

            

