/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3a4b;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links li a {
    text-decoration: none;
    color: #2d3a4b;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #0077b6;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3a4b;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #e0eafc 0%, #cfdef3 100%);
    padding: 5rem 0 4rem 0;
    text-align: center;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d3a4b;
}
.hero-subtitle {
    font-size: 1.4rem;
    color: #0077b6;
    margin-bottom: 1rem;
    font-weight: 500;
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    background: #0077b6;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: #023e8a;
}
.btn-secondary {
    background: transparent;
    color: #0077b6;
    padding: 0.8rem 2rem;
    border: 2px solid #0077b6;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-secondary:hover {
    background: #0077b6;
    color: #fff;
}

/* About Section */
.about {
    background: #fff;
    padding: 4rem 0;
    text-align: center;
}
.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3a4b;
}
.about-intro {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}
.about-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.about-item {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: left;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0077b6;
}
.about-item h3 {
    color: #0077b6;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}
.about-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: #f1f5f9;
    padding: 4rem 0;
}
.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d3a4b;
}
.features-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    flex: 1 1 250px;
    max-width: 320px;
    min-width: 220px;
    text-align: center;
}
.feature-item h3 {
    color: #0077b6;
    margin-bottom: 0.7rem;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    padding: 4rem 0;
}
.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d3a4b;
}
.testimonials-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial-item {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    flex: 1 1 250px;
    max-width: 320px;
    min-width: 220px;
    text-align: center;
    font-style: italic;
}
.testimonial-item span {
    display: block;
    margin-top: 1rem;
    color: #0077b6;
    font-style: normal;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: #e0eafc;
    padding: 4rem 0;
}
.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3a4b;
}
.contact-info {
    margin-bottom: 2rem;
}
.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.contact-item {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    min-width: 200px;
}
.contact-item h3 {
    color: #0077b6;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.contact-item p {
    color: #2d3a4b;
    font-weight: 500;
}
#contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#contact-form input,
#contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #b0bec5;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}
#contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
#contact-form button {
    align-self: flex-end;
}

/* Footer */
footer {
    background: #2d3a4b;
    color: #fff;
    text-align: center;
    padding: 1.2rem 0;
    margin-top: 2rem;
}
footer .container {
    width: 100%;
}

/* Products Section */
.products {
    background: #fff;
    padding: 4rem 0;
}
.products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d3a4b;
}
.products-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.product-item {
    background: #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    flex: 1 1 250px;
    max-width: 300px;
    min-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-item img {
    width: 100%;
    max-width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.product-item h3 {
    color: #0077b6;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}
.product-item p {
    font-size: 1rem;
    margin-bottom: 0.7rem;
}
.product-item .price {
    font-weight: 700;
    color: #2d3a4b;
    font-size: 1.1rem;
    margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .features-grid, .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        gap: 1rem;
    }
    .products-grid {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 700px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .features-grid, .testimonials-grid {
        gap: 1rem;
    }
    .container {
        width: 98%;
    }
}
@media (max-width: 600px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 180px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border-radius: 8px;
        padding: 1rem 0;
        z-index: 100;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
} 