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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #F7FAFC;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1A202C;
}

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

/* Hero Section */
.hero {
    background-color: #F7FAFC;
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.brand-header {
    margin-bottom: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 600;
    color: #4A5568;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1A202C;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4A5568;
    font-weight: 300;
}

.cta-button {
    background-color: #E53E3E;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

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

.hero-image,
.placeholder-image,
.hero-svg,
.collection-svg,
.product-svg,
.sustainability-svg {
    background-color: #E2E8F0;
    border: 2px dashed #CBD5E0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-weight: 500;
    border-radius: 8px;
}

.hero-svg,
.collection-svg,
.product-svg,
.sustainability-svg {
    background: none;
    border: none;
    height: auto;
    width: 100%;
    max-width: 100%;
}

.collection-svg {
    height: 200px;
}

.product-svg {
    height: 180px;
}

/* Introduction Section */
.intro {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.intro p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #4A5568;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: #E53E3E;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1rem;
    color: #718096;
    margin: 0;
}

/* Collections Section */
.collections {
    padding: 80px 0;
    background-color: #F7FAFC;
    text-align: center;
}

.collections h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.collection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.collection-card .placeholder-image {
    height: 200px;
    margin: 0;
    border-radius: 0;
    border: none;
}

.collection-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
}

.collection-card p {
    padding: 0 20px 20px;
    color: #718096;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.product-card {
    background: #F7FAFC;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    border: 1px solid #E2E8F0;
}

.product-card .placeholder-image {
    height: 180px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-card p {
    color: #718096;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #E53E3E !important;
    margin-bottom: 20px !important;
}

.product-btn {
    background-color: #4A5568;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

.product-btn:hover {
    background-color: #2D3748;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background-color: #F7FAFC;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature p {
    color: #718096;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.step {
    text-align: center;
}

.step-number {
    background-color: #E53E3E;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step p {
    color: #718096;
}

/* Sustainability */
.sustainability {
    padding: 80px 0;
    background-color: #F7FAFC;
}

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

.sustainability h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.sustainability p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4A5568;
}

.sustainability ul {
    list-style: none;
}

.sustainability li {
    padding: 10px 0;
    color: #718096;
    position: relative;
    padding-left: 30px;
}

.sustainability li:before {
    content: "✓";
    color: #E53E3E;
    font-weight: 600;
    position: absolute;
    left: 0;
}

.sustainability-image .placeholder-image {
    height: 300px;
}

/* Corporate */
.corporate {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.corporate h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.corporate-item {
    background: #F7FAFC;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E2E8F0;
}

.corporate-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #4A5568;
}

.corporate-item p {
    color: #718096;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #F7FAFC;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4A5568;
    font-style: italic;
}

.testimonial cite {
    color: #718096;
    font-size: 0.9rem;
}

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

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #4A5568;
}

.contact-item a {
    color: #E53E3E;
    text-decoration: none;
}

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

/* Footer */
.footer {
    background-color: #1A202C;
    color: #F7FAFC;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

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

.footer-section h4 {
    font-size: 1rem;
    color: #F7FAFC;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .logo-container {
    gap: 15px;
}

.footer .brand-name {
    font-size: 1.5rem;
    color: #F7FAFC;
}

.footer-section a {
    color: #CBD5E0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #F7FAFC;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2D3748;
}

.footer-bottom p {
    color: #718096;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}