:root {
    --color-primary-pink: #ccaaee;
    --color-primary-purple: #5566bb;
    --color-dark-purple: #3a4a8a;
    --color-light-pink: #e8d8f8;
    --color-very-light: #f5f0fa;
    --color-white: #ffffff;
    --color-text-dark: #2a2a4a;
    --color-text-light: #6a6a8a;
    --color-accent: #8877cc;
    --gradient-hero: linear-gradient(135deg, var(--color-primary-pink) 0%, var(--color-primary-purple) 100%);
    --gradient-soft: linear-gradient(180deg, var(--color-very-light) 0%, var(--color-white) 100%);
}

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

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

/* Header */
header {
    background: var(--color-white);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--color-light-pink);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-purple);
}

.logo svg {
    width: 28px;
    height: 28px;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f5f0fa' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    color: var(--color-light-pink);
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-primary-purple);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Decorative plants */
.plant-left, .plant-right {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 300px;
    z-index: 0;
}

.plant-left {
    left: 0;
}

.plant-right {
    right: 0;
}

/* Services Section */
.services {
    background: var(--color-white);
    padding: 5rem 2rem;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary-purple);
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-light-pink);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    color: var(--color-primary-purple);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--color-primary-purple);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Contact CTA Section */
.contact-cta {
    background: var(--color-primary-purple);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta h2 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.email-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    color: var(--color-primary-purple) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.email-link:hover {
    background: var(--color-light-pink);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--color-very-light);
    color: var(--color-text-light);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        display: none;
    }

    .plant-left, .plant-right {
        width: 100px;
        height: 150px;
    }
}
