/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFFFFF;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2C2C2C;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2C2C2C;
}

p {
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #8A8A8A;
}

a {
    color: #00D4AA;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #00D4AA;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #00B894;
    text-decoration: none;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #00D4AA;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #00D4AA;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #00D4AA;
    color: #FFFFFF;
    text-decoration: none;
}

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C2C2C;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    color: #2C2C2C;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.hero-text p {
    color: #8A8A8A;
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.about-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #F8F9FA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature h3 {
    color: #2C2C2C;
    margin-bottom: 12px;
}

.feature p {
    color: #8A8A8A;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.products h2 {
    text-align: center;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-image {
    margin-bottom: 20px;
}

.product h3 {
    color: #2C2C2C;
    margin-bottom: 8px;
}

.product p {
    color: #8A8A8A;
    margin-bottom: 16px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00D4AA;
    margin-bottom: 20px;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.125rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.services h2 {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service h3 {
    color: #2C2C2C;
    margin-bottom: 12px;
}

.service p {
    color: #8A8A8A;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.categories h2 {
    text-align: center;
    margin-bottom: 60px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.category {
    text-align: center;
    padding: 30px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: #F8F9FA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category h3 {
    color: #2C2C2C;
    margin-bottom: 12px;
}

.category p {
    color: #8A8A8A;
}

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

.why-choose h2 {
    text-align: center;
    margin-bottom: 60px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.reason {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reason h3 {
    color: #2C2C2C;
    margin-bottom: 12px;
}

.reason p {
    color: #8A8A8A;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #F8F9FA;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #00D4AA;
}

.testimonial p {
    color: #2C2C2C;
    font-style: italic;
    margin-bottom: 16px;
}

.customer {
    color: #8A8A8A;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.contact h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.contact-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #F8F9FA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #2C2C2C;
    margin-bottom: 8px;
}

.contact-item a {
    color: #00D4AA;
    font-weight: 500;
}

.contact-item p {
    color: #8A8A8A;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .brand-name {
    color: #FFFFFF;
}

.footer-brand p {
    color: #8A8A8A;
    margin-top: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #8A8A8A;
    margin-bottom: 12px;
    text-decoration: none;
}

.footer-column a:hover {
    color: #00D4AA;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #4A4A4A;
    text-align: center;
}

.footer-bottom p {
    color: #8A8A8A;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .feature-grid,
    .product-grid,
    .services-grid,
    .category-grid,
    .reasons-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}