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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #f5f0ed 0%, #f0ebe8 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #3d2517;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #c87137;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #c87137 0%, #a85a2a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #3d2517;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #2a1810;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

h2 {
    font-size: 2.5rem;
    color: #3d2517;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #c87137;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-intro h3 {
    font-size: 1.8rem;
    color: #3d2517;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mv-card {
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #c87137;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: #c87137;
    margin-bottom: 15px;
}

.mv-card p {
    color: #555;
    line-height: 1.7;
}

.values-heading {
    text-align: center;
    font-size: 2rem;
    color: #3d2517;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.value-box {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.value-box:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: #c87137;
    margin-bottom: 15px;
}

.value-box h4 {
    font-size: 1.2rem;
    color: #3d2517;
    margin-bottom: 10px;
}

.value-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 60px 20px;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.product-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #c87137;
    transition: all 0.3s;
}

.product-item:hover {
    box-shadow: 0 5px 20px rgba(200,113,55,0.2);
    transform: translateY(-5px);
}

.product-item h3 {
    font-size: 1.3rem;
    color: #3d2517;
    margin-bottom: 12px;
}

.product-item p {
    color: #666;
    line-height: 1.6;
}

.why-choose-section {
    background: linear-gradient(135deg, #3d2517 0%, #2a1810 100%);
    padding: 50px;
    border-radius: 8px;
    color: white;
}

.why-choose-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

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

.feature-item {
    font-size: 1.05rem;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    border-left: 3px solid #c87137;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background: white;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    background: #f9f9f9;
    padding: 40px 50px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 1.2rem;
    color: #3d2517;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.1rem;
    color: #c87137;
    font-weight: 600;
}

/* Footer */
footer {
    background: #2a1810;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    color: #c87137;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #ddd;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #c87137;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 13px;
    }
    
    .logo {
        height: 55px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .mission-vision-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-section {
        padding: 30px 20px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}
