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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #f9f9f4;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 1;
}

.logo {
    height: 130px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.cta-button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #b2ebf2 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(32, 201, 151, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    color: #28a745;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero .intro {
    font-size: 22px;
    color: #444;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 500;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(40, 167, 69, 0.4);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fffe 0%, #ffffff 100%);
}

.services h2 {
    text-align: center;
    font-size: 42px;
    color: #28a745;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #555;
    max-width: 750px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #e8f5e9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.2);
}

.service-card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    object-position: center;
    background: #f9f9f9;
    padding: 20px;
}

.service-card-content {
    padding: 30px 35px 40px;
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdf4 100%);
}

.service-card h3 {
    font-size: 24px;
    color: #28a745;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

/* Perfect For Section */
.perfect-for {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdf4 100%);
}

.perfect-for h2 {
    text-align: center;
    font-size: 42px;
    color: #28a745;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.occasion-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #e0f7fa;
    position: relative;
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.12);
    border-left-color: #28a745;
}

.occasion-number {
    font-size: 48px;
    font-weight: 900;
    color: #e0f7fa;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.occasion-card h3 {
    font-size: 22px;
    color: #28a745;
    margin-bottom: 12px;
    font-weight: 700;
}

.occasion-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: #ffffff;
}

.why-choose h2 {
    text-align: center;
    font-size: 42px;
    color: #28a745;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.15);
    border-color: #20c997;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature h3 {
    font-size: 22px;
    color: #28a745;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.contact h2 {
    font-size: 38px;
    color: #28a745;
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0 50px;
}

.contact-item h3 {
    font-size: 24px;
    color: #20c997;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.contact-item a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

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

/* Footer */
footer {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 70px;
    }

    header .container {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .intro {
        font-size: 18px;
    }

    .cta-button-large {
        font-size: 18px;
        padding: 15px 35px;
    }

    .services h2, .why-choose h2, .contact h2 {
        font-size: 28px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card img {
        height: 280px;
    }

    .service-card-content {
        padding: 25px 30px 35px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .cta-button-large {
        font-size: 16px;
        padding: 12px 25px;
    }
}