        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
            padding: 2rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.1) 10px,
                rgba(255,255,255,0.1) 20px
            );
            animation: slide 20s linear infinite;
        }

        @keyframes slide {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .logo {
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            font-size: 3rem;
        }

        .brand {
            color: #2c2c2c;
        }

        .brand h1 {
            font-size: 2.5rem;
            font-style: italic;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .brand p {
            font-size: 0.95rem;
            margin-top: 0.5rem;
            font-style: italic;
        }

        nav {
            background: #2c2c2c;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        nav a {
            color: #FFD93D;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #FFD93D;
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        nav a:hover::after {
            width: 100%;
        }

        .hero {
            background: linear-gradient(to right, rgba(255,217,61,0.9), rgba(255,193,7,0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f5f5f5" width="1200" height="600"/></svg>');
            padding: 6rem 0;
            text-align: center;
            color: #2c2c2c;
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: #2c2c2c;
            color: #FFD93D;
            padding: 1rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.3);
            background: #1a1a1a;
        }

        .services {
            padding: 5rem 0;
            background: #f9f9f9;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c2c2c;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #FFD93D, #FFC107);
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            transition: all 0.3s;
            text-align: center;
            border-top: 4px solid #FFD93D;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            color: #2c2c2c;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .contact {
            padding: 5rem 0;
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            color: white;
        }

        .contact .section-title {
            color: #FFD93D;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,217,61,0.3);
            transition: all 0.3s;
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.15);
            border-color: #FFD93D;
        }

        .contact-item h3 {
            color: #FFD93D;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .contact-item p {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        footer {
            background: #1a1a1a;
            color: #FFD93D;
            text-align: center;
            padding: 2rem 0;
        }

        @media (max-width: 768px) {
            .header-content {
                justify-content: center;
                text-align: center;
            }

            .logo-section {
                flex-direction: column;
            }

            .brand h1 {
                font-size: 1.8rem;
            }

            .hero h2 {
                font-size: 2rem;
            }

            nav ul {
                gap: 1rem;
            }
        }