:root {
    --color-bg: #FFFFFF;
    --color-text: #333333;
    --color-muted: #555555;
    --color-hero-bg: #C8E6C9;
    --color-primary: #4CAF50;
    --max-width: 1200px;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
header {
    background: var(--color-bg);
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-icon svg {
    width: 45px;
    height: 45px;
}

.logo-text {
    text-align: left;
}

.logo-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--color-muted);
    margin: 0;
    font-weight: 400;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    background-color: var(--color-hero-bg);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cherry-blossoms {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><g opacity="0.7"><circle cx="350" cy="40" r="12" fill="white"/><circle cx="340" cy="55" r="10" fill="white"/><circle cx="360" cy="50" r="11" fill="white"/><circle cx="345" cy="65" r="9" fill="white"/><path d="M345 35 Q350 40 355 35 Q350 45 345 40" fill="white" opacity="0.8"/><path d="M335 50 Q340 55 345 50 Q340 60 335 55" fill="white" opacity="0.8"/></g><g opacity="0.6"><circle cx="60" cy="100" r="10" fill="white"/><circle cx="50" cy="115" r="9" fill="white"/><circle cx="70" cy="110" r="11" fill="white"/><circle cx="55" cy="125" r="8" fill="white"/><path d="M55 95 Q60 100 65 95 Q60 105 55 100" fill="white" opacity="0.8"/><path d="M45 110 Q50 115 55 110 Q50 120 45 115" fill="white" opacity="0.8"/></g><g opacity="0.5"><circle cx="80" cy="50" r="8" fill="white"/><circle cx="75" cy="60" r="7" fill="white"/><path d="M75 45 Q80 50 85 45 Q80 55 75 50" fill="white" opacity="0.7"/></g></svg>');
    background-repeat: no-repeat;
    background-position: right top, left center, left top;
    background-size: 300px 250px, 200px 200px, 150px 100px;
    z-index: 1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.column-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.column-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.column-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    background: var(--color-bg);
}

/* Services Section */
.services-section {
    background: var(--color-bg);
}

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

.services-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.services-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-text);
}

.services-list li.and-more {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 0.5rem;
}

/* Payment Section */
.payment-section {
    background: var(--color-bg);
}

.pricing {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem !important;
}

/* Contact Section */
.contact-section {
    background: var(--color-bg);
    padding: 4rem 0;
    text-align: left;
}

.contact-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.contact-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.contact-section a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--color-bg);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #E5E5E5;
    margin-top: 2rem;
}

footer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* Responsive Design */
@media (max-width: 900px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }

    .two-column.reverse {
        direction: ltr;
    }

    .hero-text {
        font-size: 1.8rem;
    }

    .logo-title {
        font-size: 1.6rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav ul li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 20px;
        min-height: 250px;
    }

    .hero-text {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .logo-container {
        flex-direction: column;
        gap: 8px;
    }

    .logo-text {
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}
