:root {
            --peach: #FFD3B6;
            --lavender: #D4B8FF;
            --skyblue: #A0E7FF;
            --dark: #3A3A5A;
            --light: #F9F9FF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }
        
        header {
            background-color: rgba(249, 249, 255, 0.95);
            padding: 1.5rem 2rem;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(58, 58, 90, 0.08);
            backdrop-filter: blur(5px);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f043b0;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--lavender), var(--skyblue));
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.95rem;
        }
        
        .nav-links a:hover {
            background-color: rgba(212, 184, 255, 0.15);
            color: var(--dark);
        }
        
        section {
            padding: 7rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        #home {
            background: linear-gradient(135deg, rgba(255, 211, 182, 0.2), rgba(160, 231, 255, 0.2));
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 3rem;
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            flex: 1;
        }
        
        .hero-image {
            flex: 1;
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(58, 58, 90, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: var(--lavender);
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            top: -50px;
            right: -50px;
            z-index: -1;
        }
        
        .hero-image::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background-color: var(--skyblue);
            border-radius: 50%;
            filter: blur(50px);
            opacity: 0.4;
            bottom: -30px;
            left: -30px;
            z-index: -1;
        }
        
        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--dark);
        }
        
        .hero-content h1 span {
            background: linear-gradient(135deg, var(--lavender), var(--skyblue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--dark);
            opacity: 0.9;
            line-height: 1.6;
            max-width: 500px;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--lavender), var(--skyblue));
            color: white;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 10px 20px rgba(212, 184, 255, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(212, 184, 255, 0.4);
        }
        
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(30px);
            animation: float 15s infinite linear;
        }
        
        .shape-1 {
            width: 300px;
            height: 300px;
            background-color: var(--peach);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .shape-2 {
            width: 200px;
            height: 200px;
            background-color: var(--lavender);
            bottom: 15%;
            right: 10%;
            animation-delay: 2s;
        }
        
        .shape-3 {
            width: 250px;
            height: 250px;
            background-color: var(--skyblue);
            top: 50%;
            right: 20%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        #about {
            background-color: white;
            position: relative;
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--lavender), var(--skyblue));
            margin: 1rem auto 0;
            border-radius: 2px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: var(--dark);
            opacity: 0.9;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--peach), #ffb38a);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .feature-text p {
            font-size: 0.9rem;
            line-height: 1.6;
            opacity: 0.8;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(58, 58, 90, 0.1);
            animation: pulse 6s infinite ease-in-out;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background-color: var(--peach);
            border-radius: 50%;
            filter: blur(50px);
            opacity: 0.4;
            bottom: -30px;
            right: -30px;
            z-index: -1;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
            100% {
                transform: scale(1);
            }
        }
        
        #services {
            background: linear-gradient(135deg, rgba(160, 231, 255, 0.05), rgba(212, 184, 255, 0.05));
            position: relative;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(58, 58, 90, 0.08);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(58, 58, 90, 0.15);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--peach), var(--lavender), var(--skyblue));
        }
        
        .service-content {
            padding: 2rem;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }
        
        .service-content h3 {
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .service-content p {
            color: var(--dark);
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--dark);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .service-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .service-link:hover {
            color: var(--lavender);
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
        .service-card:nth-child(1) .service-icon {
            background: linear-gradient(135deg, var(--peach), #ffb38a);
        }
        
        .service-card:nth-child(2) .service-icon {
            background: linear-gradient(135deg, #a8b5ff, var(--lavender));
        }
        
        .service-card:nth-child(3) .service-icon {
            background: linear-gradient(135deg, var(--skyblue), #6bd5ff);
        }
        
        .service-card:nth-child(4) .service-icon {
            background: linear-gradient(135deg, #ffb3e6, #ff8ad4);
        }
        
        .service-card:nth-child(5) .service-icon {
            background: linear-gradient(135deg, #b5ffa8, #8aff6b);
        }
        
        .service-card:nth-child(6) .service-icon {
            background: linear-gradient(135deg, #ffa8a8, #ff6b6b);
        }
        
        .service-card:nth-child(7) .service-icon {
            background: linear-gradient(135deg, #a8e1ff, #6bc6ff);
        }
        
        .service-card:nth-child(8) .service-icon {
            background: linear-gradient(135deg, #ffd8a8, #ffb96b);
        }
        
        #contact {
            background-color: white;
            position: relative;
        }
        
        .contact-container {
            display: flex;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .contact-info p {
            margin-bottom: 2rem;
            line-height: 1.6;
            color: var(--dark);
            opacity: 0.9;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--lavender), var(--skyblue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.2rem;
        }
        
        .contact-form {
            flex: 1;
            background: linear-gradient(135deg, rgba(255, 211, 182, 0.1), rgba(160, 231, 255, 0.1));
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(58, 58, 90, 0.08);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 1px solid #e0e0ff;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.8);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--lavender);
            box-shadow: 0 0 0 3px rgba(212, 184, 255, 0.2);
            background-color: white;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--lavender), var(--skyblue));
            color: white;
            border: none;
            padding: 0.9rem 2.2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 5px 15px rgba(212, 184, 255, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 184, 255, 0.4);
        }
        
        footer {
            background: linear-gradient(135deg, var(--dark), #2a2a45);
            color: white;
            padding: 3rem 2rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--lavender), var(--skyblue));
            border-radius: 3px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: linear-gradient(135deg, var(--lavender), var(--skyblue));
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-content p {
                margin: 0 auto 2rem;
            }
            
            .about-content {
                flex-direction: column-reverse;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .nav-links {
                display: none;
            }
        }