        :root {
            --primary: #FFD700;
            --primary-dark: #FFC000;
            --primary-light: #FFF2CC;
            --dark: #333333;
            --light: #FFFFFF;
            --gray: #F5F5F5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        /* Top Navbar Styles */
        .top-navbar {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            background-color: #000000;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo {
            height: 100%;
            max-height: 180px;
            object-fit: contain;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            opacity: 0.9;
        }
        
        .top-nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .top-nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .top-nav-links a:hover {
            color: var(--primary);
        }
            
        /* Main Navigation with Dropdown */
        .nav-container {
            position: sticky;
            top: 80px;
            z-index: 999;
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            list-style: none;
            position: relative;
        }
        
        .nav > li {
            margin: 0;
            position: relative;
        }
        
        .nav > li > a {
            display: block;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 15px 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav > li > a:hover {
            background-color: rgba(0,0,0,0.1);
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--light);
            width: 200px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .nav > li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }
        
        .dropdown-menu li a {
            display: block;
            padding: 10px 15px;
            color: var(--dark);
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: all 0.3s;
        }
        
        .dropdown-menu li a:hover {
            background-color: var(--primary-light);
            padding-left: 20px;
        }
        
        /* Pest Detail Section */
        .pest-detail {
            padding: 80px 5%;
            background-color: var(--light);
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h1 {
            font-size: 36px;
            color: var(--dark);
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .pest-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .pest-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .pest-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .pest-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .pest-info h3 {
            font-size: 24px;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        
        .pest-info ul {
            padding-left: 20px;
        }
        
        .pest-info li {
            margin-bottom: 10px;
        }
        
        .danger-level {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .danger-level span {
            font-weight: 600;
        }
        
        .danger-high {
            color: #e74c3c;
        }
        
        .danger-medium {
            color: #f39c12;
        }
        
        .danger-low {
            color: #2ecc71;
        }
        
        /* Treatment Section */
        .treatment {
            padding: 60px 5%;
            background-color: var(--gray);
        }
        
        .treatment-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .step-card {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .step-card:hover {
            transform: translateY(-10px);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        /* FAQ Section */
        .faq {
            padding: 60px 5%;
            background-color: var(--light);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
        }
        
        .faq-answer {
            display: none;
            padding-top: 10px;
        }
        
        /* Call to Action */
        .cta {
            padding: 80px 5%;
            background-color: var(--primary);
            text-align: center;
        }
        
        .cta h2 {
            font-size: 32px;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .cta-btn {
            display: inline-block;
            background-color: var(--dark);
            color: var(--light);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
            margin-top: 20px;
        }
        
        .cta-btn:hover {
            background-color: #222;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 60px 5% 30px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--primary);
        }
        
        .footer-column p {
            color: #ccc;
        }
        
        .footer-column i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999;
            font-size: 14px;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .pest-content {
                grid-template-columns: 1fr;
            }
            
            .pest-image {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }
            
            .treatment-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .top-navbar {
                height: 80px;
            }
            
            .nav {
                flex-wrap: wrap;
            }
            
            .nav > li {
                flex: 1;
                min-width: 120px;
                text-align: center;
            }
            
            .section-title h1 {
                font-size: 30px;
            }
            
            .treatment-steps {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .top-nav-links {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }
            
            .nav > li > a {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .section-title h1 {
                font-size: 28px;
            }
            
            .cta h2 {
                font-size: 26px;
            }
        }
                /* WhatsApp butonu stil */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            text-decoration: none;
            color: #FFF;
        }
        
        /* WhatsApp logo için */
        .whatsapp-icon {
            display: inline-block;
            width: 30px;
            height: 30px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
        }
        
        /* Mobil uyumluluk */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
            }
            .whatsapp-icon {
                width: 25px;
                height: 25px;
            }
        }