

        :root {
            /* Clean, modern color palette */
            --primary-dark: #1A1A2E;
            --primary-color: #16213E;
            --secondary-color: #0F3460;
            --accent-color: #533483;
            --light-accent: #E94560;
            --bg-light: #F8F9FA;
            --bg-white: #FFFFFF;
            --text-dark: #212529;
            --text-medium: #495057;
            --text-light: #6C757D;
            --border-color: #E9ECEF;
            
            /* Typography */
            --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
            
            /* Spacing */
            --space-xs: 0.25rem;
            --space-sm: 0.5rem;
            --space-md: 1rem;
            --space-lg: 1.5rem;
            --space-xl: 2rem;
            --space-2xl: 3rem;
            --space-3xl: 4rem;
            
            /* Border Radius */
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            
            /* Shadows */
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        /* Header */
        .header {
            background-color: var(--bg-white);
            padding: var(--space-lg) 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .nav-list {
            display: flex;
            gap: var(--space-xl);
            list-style: none;
        }

        .nav-link {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-dark);
            text-decoration: none;
            padding: var(--space-xs) var(--space-sm);
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--accent-color);
        }

        .nav-link.active {
            color: var(--accent-color);
            border-bottom: 2px solid var(--accent-color);
        }

        /* Hero Section */
        .hero {
            padding: var(--space-3xl) 0;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            margin-bottom: var(--space-2xl);
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: var(--space-lg);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Gallery Section */
        .gallery-section {
            padding: var(--space-2xl) 0;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: var(--space-xl);
            text-align: center;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }

        .gallery-item {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .gallery-image {
            height: 200px;
            overflow: hidden;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-image img {
            transform: scale(1.05);
        }

        .gallery-content {
            padding: var(--space-md);
        }

        .gallery-title {
            font-family: var(--font-heading);
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: var(--space-xs);
        }

        .gallery-category {
            font-size: 0.875rem;
            color: var(--text-light);
            font-weight: 400;
        }

        /* CTA Section */
        .cta-section {
            background: var(--primary-color);
            color: white;
            padding: var(--space-2xl) 0;
            margin: var(--space-2xl) 0;
            text-align: center;
        }

        .cta-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: var(--space-md);
        }

        .cta-text {
            font-size: 1.125rem;
            margin-bottom: var(--space-lg);
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: var(--light-accent);
            color: white;
            padding: var(--space-md) var(--space-xl);
            border-radius: var(--radius-md);
            text-decoration: none;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .cta-button:hover {
            background-color: #d43a57;
            transform: translateY(-2px);
        }

        /* About Section */
        .about-section {
            padding: var(--space-2xl) 0;
            background: var(--bg-white);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-quote {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 500;
            color: var(--primary-dark);
            line-height: 1.4;
            margin-bottom: var(--space-lg);
            padding-left: var(--space-lg);
            border-left: 4px solid var(--accent-color);
        }

        .about-text {
            font-size: 1.125rem;
            color: var(--text-medium);
            line-height: 1.7;
        }

        /* Services Section */
        .services-section {
            padding: var(--space-2xl) 0;
        }

        .services-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: var(--space-2xl);
            align-items: start;
        }

        .services-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
        }

        .services-column {
            background: var(--bg-white);
            padding: var(--space-lg);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }

        .services-list {
            list-style: none;
        }

        .services-list li {
            padding: var(--space-sm) 0;
            font-size: 1rem;
            color: var(--text-medium);
            border-bottom: 1px solid var(--border-color);
        }

        .services-list li:last-child {
            border-bottom: none;
        }

        .services-list li:hover {
            color: var(--accent-color);
            cursor: default;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: var(--space-2xl) 0;
            background: var(--bg-light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-lg);
        }

        .testimonial-card {
            background: var(--bg-white);
            padding: var(--space-lg);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-medium);
            margin-bottom: var(--space-md);
            line-height: 1.6;
        }

        .testimonial-author {
            font-family: var(--font-heading);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary-dark);
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            color: white;
            padding: var(--space-xl) 0;
            text-align: center;
        }

        .footer-divider {
            border: none;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: var(--space-lg) auto;
            max-width: 200px;
        }

        .footer-text {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: var(--space-md);
        }

        .footer-button {
            display: inline-block;
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: var(--space-sm) var(--space-lg);
            border-radius: var(--radius-md);
            text-decoration: none;
            font-family: var(--font-heading);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .footer-button:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-content {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .header-content {
                flex-direction: column;
                gap: var(--space-md);
            }
            
            .nav-list {
                gap: var(--space-md);
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .about-quote {
                font-size: 1.5rem;
            }
        }

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