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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.menu-icon {
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* Hero Section */
.hero {
    background: #FFD700;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero .hero-image {
    order: 1;
}

.hero .hero-content {
    order: 2;
}

.hero-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* About Section */
.about {
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Services Section */
.services {
    background: #FFD700;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.services-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.services-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Gallery Section */
.gallery {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

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

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #FFD700;
    color: #000;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero,
    .about,
    .services {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .hero-heading {
        font-size: 32px;
    }

    .about-content h2,
    .services-content h2,
    .gallery-container h2 {
        font-size: 28px;
    }

    .menu-icon {
        display: block;
    }

    .logo {
        font-size: 20px;
    }
}