
        :root {
            --primary-color: #c9d45a;
            --secondary-color: #2a6b5d;
            --accent-color: #e36b6b;
            --dark-color: #23272a;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --light-bg: #f1f3f5;
            
            --heading-font: "Merriweather", Georgia, serif;
            --body-font: "Montserrat", Arial, sans-serif;
            
            --container-width: 1200px;
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
                         ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-color);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    
        

        body {
            font-family: var(--body-font);
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-bg);
            overflow-x: hidden;
            max-width: 100%;
        }
        
    

        h1, h2, h3, h4, h5 {
            font-family: var(--heading-font);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 5rem 0;
        }

        .btn {
            display: inline-block;
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
           color: var(--dark-color);
        }

        .btn-primary:hover {
            background-color: #1f5247;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
            color: #ffffff;
        }

        .btn-secondary {
            background-color: var(--primary-color);
            color: var(--dark-color);
        }

        .btn-secondary:hover {
            background-color: #1f5247;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
            color: #ffffff;
        }

        .btn-outline {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;

        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        .text-center {
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--secondary-color);
        }

        /* Header Styles */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: var(--transition);
        }

        .main-header.scrolled {
            padding: 0.7rem 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-family: var(--heading-font);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo a:hover{
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            margin-right: 2rem;
        }

        .nav-item {
            margin: 0 1rem;
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-color);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .header-cta .btn {
            margin-left: 1rem;
        }



        /* Hero Section */
        .hero-section {
            padding: 10rem 0 6rem;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #b9c44c 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            flex: 1;
            padding-right: 2rem;
        }

        .hero-title {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .hero-text {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
        }

        .hero-image {
            flex: 1;
            position: relative;
        }

        /* Hero Section - Güncellenmiş */
        .hero-img-wrapper {
            max-width: 380px;
            z-index: 0;
            position: relative;
        }

        .hero-img-wrapper::before {
            content: '';
            position: absolute;
            top: 15px;
            right: -15px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--dark-color);
            border-radius: 20px 20px 0 20px; /* Aynı radius değerleri */
            z-index: -1;
        }

        .hero-img-wrapper img {
            border-radius: 20px 20px 0 20px; /* Görsele de aynı radius */
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .hero-pattern {
            position: absolute;
            bottom: 150px;
            right: 900px;
            width: 700px;
            height: 700px;
            opacity: 1;
            background-image: url('images/circles.svg');
            background-size: contain;
            background-repeat: no-repeat;
            z-index: -1;
        }

        /* Services Section */
        .services-section {
            background-color: white;
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: linear-gradient(135deg, #b9c44c 0%, #b9c44c 100%);

            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--secondary-color);
            border-radius: 50%;
        }

        .service-icon img {
            width: 40px;
            height: 40px;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-text {
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: var(--secondary-color);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .service-link i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* About Section */
        .about-section {
        background: linear-gradient(100deg,
            #ffffff 0%,
            #ffffff 20%,
            var(--primary-color) 55%,
            #b9c44c 100%
        );

           
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 5rem;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-img-wrapper {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .about-img-wrapper::before {
            content: '';
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--secondary-color);
            border-radius: var(--border-radius);
            z-index: -1;
        }

        .about-img-wrapper img {
            border-radius: var(--border-radius);
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .about-badge {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: var(--secondary-color);
            color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            text-align: center;
        }

        .about-badge span {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }

        .about-content {
            flex: 1;
        }

        .about-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .about-text {
            color: var(--dark-color);
            margin-bottom: 2rem;
        }

        .about-features {
            margin-bottom: 2.5rem;
        }
        .about-container .btn{
            background-color: #1a4f43;
            color: var(--light-bg);
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .feature-icon {
            width: 15px;
            height: 15px;
            margin-right: 1rem;
            color: var(--secondary-color);
            background-color: #1a4f43;
            border-radius: 85%;
            display: flex;
            text-align: center;
            justify-content: center;
        }

        /* FAQ Section */
        .faq-section {
            background-color: white;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .faq-item {
            background: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            transition: var(--transition);
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
        }

        .faq-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .faq-icon img {
            width: 24px;
            height: 24px;
        }

        .faq-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .faq-text {
            color: var(--gray-color);
        }

        /* Blog Section */
        .blog-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #b9c44c 100%);
            padding: 5rem 0;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .blog-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .blog-image {
            height: 220px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: var(--gray-color);
        }

        .blog-date {
            display: flex;
            align-items: center;
            margin-right: 1.5rem;
        }

        .blog-date i,
        .blog-category i {
            margin-right: 0.5rem;
        }

        .blog-category {
            display: flex;
            align-items: center;
        }

        .blog-title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: var(--gray-color);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .blog-link {
            color: var(--secondary-color);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .blog-link i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .blog-link:hover i {
            transform: translateX(5px);
        }

        .blog-cta {
            text-align: center;
        }

        /* CTA Section */
        .cta-section {
            background: var(--primary-color);
            padding: 5rem 0 80px; /* Alt padding'i artırdık */
            position: relative;
            margin-bottom: 0; /* Margin'i kaldırdık */
            z-index: 2; /* Z-index ekledik */
        }


        .cta-container {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .cta-card {
            flex: 1;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            position: relative; /* Çerçeve için gerekli */
        }

        /* Çerçeve efekti için pseudo-element */
        .cta-card::before {
            content: '';
            position: absolute;
            margin: 0;
            left: 1px;
            top: 1px;
            width: 99%;
            height: 99%;
            border: 2px solid var(--dark-color);
            border-radius: var(--border-radius);
            z-index: 0;
        }

        .cta-container .btn{
            background-color:  var(--dark-color);
            color: #ffffff;
        }

                .cta-container .btn:hover{
            background-color: #1a4f43;
            color: #ffffff;
        }

        .card-header {
            padding: 2rem;
            display: flex;
            align-items: center;
            background: var(--secondary-color);
            color: white;
        }

        .card-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1.5rem;
            border: 3px solid var(--secondary-color);
        }

        .card-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-info h3 {
            margin-bottom: 0.5rem;
            color: white;
        }

        .card-info p {
            opacity: 0.8;
        }

        .card-body {
            padding: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(42, 107, 93, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        .contact-details span {
            display: block;
            font-size: 0.9rem;
            color: var(--gray-color);
        }

        .contact-details strong {
            font-size: 1.1rem;
            color: var(--dark-color);
        }

        .cta-content {
            flex: 1;
        }

        .cta-title {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .cta-text {
            margin-bottom: 2rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: var(--body-font);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(42, 107, 93, 0.1);
        }

        /* Footer */
        .main-footer {
            background: var(--primary-color);
            color: white;
            padding: 100px 0 2rem; /* Üst padding'i artırdık */
            margin-top: -50px; /* Margin'i ayarladık */
            position: relative;
            
            z-index: 1; /* Z-index ekledik */
        }

        .main-footer .container{
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            border-top-right-radius: 400px;
            background-color: var(--secondary-color);
            margin-top: -50px;
            margin-bottom: -50px;
            padding-top: 50px;
            padding-bottom: 20px;
            padding-left: 80px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .footer-about h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-about p {
            opacity: 0.7;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links ul li {
            margin-bottom: 0.8rem;
        }

        .footer-links ul li a {
            opacity: 0.7;
            transition: var(--transition);
        }

        .footer-links ul li a:hover {
            opacity: 1;
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            opacity: 0.7;
        }

        .legal-links {
            display: flex;
            gap: 1.5rem;
        }

        .legal-links a {
            opacity: 0.7;
            transition: var(--transition);
        }

        .legal-links a:hover {
            opacity: 1;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .about-container {
                gap: 3rem;
            }
            
            .cta-container {
                gap: 3rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            
            .footer-about .social-link{
                margin-top: 2.5rem;
            }
            
            .footer-about h3{
                display: none;
            }
            
                    body::-webkit-scrollbar {
            display: none;
        }
            .section {
                padding: 4rem 0;
            }
            
            
            .header-cta {
                display: none;
            }
            
            
            .hero-container {
                flex-direction: column;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 3rem;
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .about-image {
                margin-bottom: 3rem;
            }
            
            .cta-container {
                flex-direction: column;
            }
            
            .cta-card {
                margin-bottom: 3rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .legal-links {
                justify-content: center;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            
        }
        
        /* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary-color);
}
        
        @media (max-width: 768px) {
                    html {
            overflow-x: hidden;
            width: 100%;
        }
            
    .mobile-toggle {
        display: block;
        z-index: 1001;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px; /* Sabit genişlik */
        max-width: 80%; /* Maksimum genişlik */
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 80px 2rem 2rem;
        overflow-y: auto; /* İçerik uzunsa kaydırma çubuğu */
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .nav-item {
        margin: 0.5rem 0;
        width: 100%;
        text-align: left;
    }
    
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Body scroll lock when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobil menü açıkken header'ı düzeltme */
    .main-header {
        padding: 1rem 0;
    }
}


        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .services-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 619px) {
            .footer-about p{
                display: none;
            }

            .footer-bottom{
                margin-left: auto;
            }
        }

        /* Form Mesaj Stilleri */
#form-message {
    margin-top: 20px;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 500;
}

.form-message-loading {
    background-color: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #bbdefb;
}

.form-message-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-message-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Form elemanları için ek stiller */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

/* Bildirim Stilleri */
.notification {
    position: fixed;
    top: 80px; /* Header yüksekliğine göre ayarlayın */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    animation: slideDown 0.5s ease;
}

.notification .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification.success {
    background-color: #d4edda;
    color: #155724;
    border-bottom: 2px solid #c3e6cb;
}

.notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border-bottom: 2px solid #f5c6cb;
}

.notification.loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border-bottom: 2px solid #bee5eb;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

                @media (min-width: 768px) {
                    .mobilenav{
                        display: none;
                    }
                }
                
                .nav-link.active {
    color: #your-active-color; /* Aktif renk */
    font-weight: 600; /* Vurgu için kalın yazı */
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #your-active-color; /* Aktif renk */
}