         :root {
            --primary: #8B5E3C;
            --primaryLight: #B28A67;
            --primaryDark: #5C3B22;
            --secondary: #CBA14B;
            --secondaryLight: #E3C97A;
            --secondaryDark: #8B7530;
            --accent: #A64B4B;
            --accentLight: #D17A7A;
            --accentDark: #6B3434;
            --background: #F5F2EE;
            --text: #3B2F2F;
            --textSecondary: #7A6D6A;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--background);
            color: var(--text);
            font-size: 16px;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--primaryDark);
            font-weight: 700;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 38px;
            margin-bottom: 15px;
            text-transform: capitalize;
            color: var(--primaryDark);
        }

        .section-title p {
            font-size: 18px;
            color: var(--textSecondary);
            max-width: 600px;
            margin: auto;
            font-style: italic;
        }
        
        /* Navbar */
        .navbar-default {
            background-color: rgba(245, 242, 238, 0.95);
            border-color: transparent;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease-in-out;
        }
        .navbar-default .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primaryDark) !important;
            height: auto;
            padding: 20px 15px;
        }
        .navbar-default .navbar-nav > li > a {
            color: var(--text) !important;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            padding: 25px 15px;
            transition: color 0.3s;
        }
        .navbar-default .navbar-nav > li > a:hover,
        .navbar-default .navbar-nav > .active > a {
            color: var(--primary) !important;
            background-color: transparent !important;
        }

        /* Hero Section */
        #ana-giris {
            background: url('images/telkari-zarafet-atölye-hero-1280x768.jpeg') no-repeat center center;
            background-size: cover;
            color: var(--white);
            height: 100vh;
            min-height: 650px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }
        #ana-giris::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(59, 47, 47, 0.6);
        }
        #ana-giris .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        #ana-giris h1 {
            font-size: 60px;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        #ana-giris p {
            font-size: 20px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
        }
        
        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover, 
        .btn-primary-custom:focus {
            background-color: var(--primaryDark);
            border-color: var(--primaryDark);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        /* Service Cards */
        .service-box {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.07);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            text-align: center;
        }
        .service-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .service-box .service-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        .service-box h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primaryDark);
        }

        /* Testimonials */
        #musteri-yorumlari-basarilar {
            background-color: var(--white);
        }
        .testimonial-item {
            text-align: center;
            padding: 20px;
        }
        .testimonial-item img {
            width: 128px;
            height: 128px;
            border-radius: 50%;
            margin-bottom: 20px;
            box-shadow: 0 0 0 5px var(--background);
        }
        .testimonial-item blockquote {
            border-left: none;
            font-size: 18px;
            font-style: italic;
            color: var(--text);
            margin-bottom: 15px;
        }
        .testimonial-item .client-name {
            font-weight: 700;
            color: var(--primaryDark);
            font-family: 'Playfair Display', serif;
        }

        /* Team Section */
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-member img {
            width: 192px;
            height: 192px;
            border-radius: 50%;
            margin-bottom: 20px;
            transition: transform 0.3s;
            border: 5px solid var(--white);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .team-member:hover img {
            transform: scale(1.05);
        }
        .team-member h4 {
            font-size: 22px;
            color: var(--primaryDark);
            margin-bottom: 5px;
        }
        .team-member span {
            font-style: italic;
            color: var(--secondaryDark);
            display: block;
        }

        /* Contact Form */
        #iletisim-ve-siparis {
            background-color: var(--white);
        }
        .contact-form .form-control {
            border-radius: 4px;
            border: 1px solid #ccc;
            height: 50px;
            box-shadow: none;
            font-size: 16px;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary);
            box-shadow: none;
        }
        .contact-form textarea.form-control {
            height: auto;
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        .contact-info-item .icon {
            font-size: 24px;
            color: var(--primary);
            margin-right: 20px;
            min-width: 30px;
            text-align: center;
        }
        .contact-info-item p {
            margin: 0;
            line-height:1.6;
        }

        /* Footer */
        .footer {
            background-color: var(--primaryDark);
            color: var(--background);
            padding: 50px 0 30px;
        }
        .footer a {
            color: var(--primaryLight);
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--white);
            text-decoration: none;
        }
        .footer .footer-title {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            margin-bottom: 20px;
        }
        .footer .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--primary);
            color: var(--textSecondary);
            font-size: 14px;
        }

        /* Cookie Banner */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--primaryDark);
            color: var(--white);
            padding: 15px 20px;
            z-index: 1050;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }
        .cookie-consent-banner.active {
            transform: translateY(0);
        }
        .cookie-consent-banner p {
            margin: 0;
            font-size: 14px;
        }
        .cookie-consent-banner a {
            color: var(--secondaryLight);
            text-decoration: underline;
        }
        .cookie-consent-banner .btn-accept {
            background-color: var(--secondary);
            color: var(--primaryDark);
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            margin-left: 20px;
            font-weight: 700;
        }
        .img-responsive-custom {
            display: block;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
        
        @media(max-width: 991px) {
            .alternating-layout .row:nth-child(even) .col-md-push-6 {
                float: none !important;
            }
             .alternating-layout .row:nth-child(even) .col-md-pull-6 {
                float: none !important;
            }
        }

        @media(max-width: 767px) {
            #ana-giris h1 {
                font-size: 40px;
            }
            #ana-giris p {
                font-size: 18px;
            }
            .navbar-default .navbar-brand {
                font-size: 24px;
                padding: 15px;
            }
            .navbar-default .navbar-toggle {
                margin: 10px 15px 10px 0;
            }
            .navbar-default .navbar-nav > li > a {
                 padding: 15px;
            }
            .contact-info, .contact-form {
                margin-bottom: 40px;
            }
        }
    