        :root {
            --primary: #1B264F;
            --primary-light: #3A4A85;
            --primary-dark: #111D3A;
            --secondary: #F4D35E;
            --secondary-light: #FAE27A;
            --secondary-dark: #C5A942;
            --accent: #EF7F1A;
            --accent-light: #F49E4C;
            --accent-dark: #B25D00;
            --background: #FAFAFA;
            --text: #1A1A1A;
            --text-secondary: #555555;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
        }

        .navbar {
            background-color: var(--primary) !important;
            box-shadow: 0 2px 10px rgba(27, 38, 79, 0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            color: var(--secondary) !important;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--secondary) !important;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/istanbul-photography-hero-1280x768.jpeg') center/cover;
            opacity: 0.2;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .btn-primary-custom {
            background-color: var(--accent);
            border-color: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            background-color: var(--accent-dark);
            border-color: var(--accent-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(239, 127, 26, 0.3);
        }

        .btn-secondary-custom {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            padding: 10px 28px;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            background-color: var(--secondary);
            color: var(--primary);
            text-decoration: none;
        }

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

        .section-title {
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            color: var(--accent);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin: 15px 0;
            box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--secondary);
        }

        .case-study-card {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            color: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .case-study-card:hover {
            transform: scale(1.02);
        }

        .stats-section {
            background-color: var(--primary);
            color: white;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary);
        }

        .contact-section {
            background: linear-gradient(135deg, var(--background) 0%, #f0f0f0 100%);
        }

        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 40px 0 20px;
        }

        .footer a {
            color: var(--secondary-light);
            text-decoration: none;
        }

        .footer a:hover {
            color: var(--secondary);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--primary);
            color: white;
            padding: 15px;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .section-padding {
                padding: 50px 0;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .service-card {
                padding: 20px;
                margin-bottom: 20px;
            }
        }
    