 :root {
            --peach: #FFDAB9;
            --lavender: #E6E6FA;
            --sky-blue: #87CEEB;
            --deep-lavender: #9370DB;
            --soft-peach: #FFE4C4;
            --dark-blue: #4682B4;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--lavender);
            color: #333;
            scroll-behavior: smooth;
        }
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 5%;
            position: fixed;
            width: 90%;
            z-index: 100;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-blue);
        }
        .nav-links a {
            margin-left: 2rem;
            text-decoration: none;
            color: var(--deep-lavender);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--dark-blue);
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--sky-blue);
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        section {
            padding: 6rem 5% 4rem;
            min-height: 100vh;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--peach) 0%, var(--lavender) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
            animation: pulse 15s infinite linear;
            z-index: 0;
        }
        @keyframes pulse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        h1 {
            font-size: 3.5rem;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.5rem;
            color: var(--dark-blue);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        h2:after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: var(--sky-blue);
            margin: 20px auto;
            border-radius: 2px;
        }
        p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }
        .cta-button {
            background-color: var(--deep-lavender);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(147, 112, 219, 0.3);
        }
        .cta-button:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(70, 130, 180, 0.4);
        }
        /* About Section */
        .about {
            background-color: white;
        }
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .about-text {
            flex: 1;
        }
        .about-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transform: rotate(-2deg);
            transition: transform 0.5s ease;
        }
        .about-image:hover {
            transform: rotate(0deg) scale(1.02);
        }
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        /* Services Section */
        .services {
            background: linear-gradient(135deg, var(--lavender) 0%, var(--sky-blue) 100%);
        }
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .services-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .tab-button {
            background: rgba(255, 255, 255, 0.3);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            color: var(--dark-blue);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .tab-button.active {
            background: white;
            color: var(--deep-lavender);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .tab-button:hover:not(.active) {
            background: rgba(255, 255, 255, 0.5);
        }
        .service-tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .service-tab-content.active {
            display: block;
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            transform: perspective(1000px) rotateX(5deg);
        }
        .service-card:hover {
            transform: perspective(1000px) rotateX(0deg) translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .service-icon {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--peach) 0%, var(--soft-peach) 100%);
            font-size: 3rem;
            color: var(--deep-lavender);
        }
        .service-details {
            padding: 1.5rem;
        }
        .service-details h3 {
            color: var(--dark-blue);
            margin-top: 0;
            font-size: 1.5rem;
        }
        .service-details p {
            color: #555;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        /* Contact Section */
        .contact {
            background-color: var(--soft-peach);
        }
        .contact-container {
            display: flex;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .contact-info {
            flex: 1;
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .contact-info h3 {
            color: var(--dark-blue);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--lavender);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--deep-lavender);
            font-size: 1.2rem;
        }
        .contact-form {
            flex: 1;
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark-blue);
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            transition: all 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--sky-blue);
            box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.3);
            outline: none;
        }
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        footer {
            background-color: var(--dark-blue);
            color: white;
            text-align: center;
            padding: 2rem 5%;
        }
        .active-nav {
            color: var(--dark-blue) !important;
            font-weight: 600 !important;
        }
        .active-nav:after {
            width: 100% !important;
        }
        /* Floating elements */
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            z-index: 0;
        }
        .shape-1 {
            top: 20%;
            left: 5%;
            width: 100px;
            height: 100px;
            background-color: var(--deep-lavender);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: float 8s ease-in-out infinite;
        }
        .shape-2 {
            bottom: 15%;
            right: 10%;
            width: 150px;
            height: 150px;
            background-color: var(--sky-blue);
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            animation: float 10s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }