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

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

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #2D2D2D;
}

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

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2D2D2D;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: #2D2D2D;
}

p {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    color: #4A4A4A;
}

/* Logo and Branding */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.logo-svg {
    flex-shrink: 0;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4A5D3A;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #3A4D2A;
    transform: translateY(-1px);
}

.product-button {
    background: #4A5D3A;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.product-button:hover {
    background: #3A4D2A;
}

.submit-button {
    background: #4A5D3A;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.submit-button:hover {
    background: #3A4D2A;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4A5D3A;
    font-weight: 500;
}

.feature svg {
    color: #4A5D3A;
}

/* Grids */
.highlights-grid,
.quality-grid,
.products-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

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

/* Grid Items */
.highlight-item,
.quality-item,
.product-item,
.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.highlight-icon,
.quality-number {
    margin-bottom: 1.5rem;
}

.highlight-icon {
    color: #4A5D3A;
}

.quality-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4A5D3A;
}

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

.product-image {
    margin-bottom: 1.5rem;
}

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

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A5D3A;
    margin: 1rem 0;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #2D2D2D;
}

.testimonial-author span {
    color: #6B7280;
    font-size: 0.9rem;
}

/* Reasons and Sustainability */
.reasons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason h4 {
    color: #4A5D3A;
    margin-bottom: 0.5rem;
}

.sustainability-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 2rem;
}

.sustainability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4A5D3A;
    font-weight: 500;
}

.sustainability-item svg {
    color: #4A5D3A;
    flex-shrink: 0;
}

/* Contacts */
.contacts {
    background: white;
    padding: 80px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
}

.contact-icon {
    margin-bottom: 1rem;
    color: #4A5D3A;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
}

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

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

.contact-item address {
    font-style: normal;
    color: #4A4A4A;
}

/* Sections */
section {
    padding: 80px 0;
}

.centered-section {
    text-align: center;
}

.centered-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centered-section .section-content,
.centered-section .highlights-grid,
.centered-section .quality-grid,
.centered-section .products-grid,
.centered-section .testimonials-grid {
    width: 100%;
    max-width: 1000px;
}

.centered-section .section-split {
    width: 100%;
    max-width: 1000px;
}

.hero {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

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

.hero-content {
    text-align: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 2rem;
}

.section-img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

/* Section Split */
.section-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 3rem;
}

.content-side {
    flex: 1;
}

.image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #2D2D2D;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2D2D2D;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #2D2D2D;
    color: white;
    padding: 50px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #4A4A4A;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-split {
        flex-direction: column;
        gap: 40px;
    }
    
    .highlights-grid,
    .quality-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .placeholder-content {
        padding: 40px 20px;
    }
}