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

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

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

/* Color Variables */
:root {
    --moss-green: #4A5D23;
    --light-green: #7FB069;
    --persimmon-orange: #FF6B35;
    --kraft-beige: #F5F1E8;
    --warm-white: #FEFEFE;
    --charcoal: #2C2C2C;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--moss-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--moss-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--moss-green);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Header */
.header {
    background: var(--warm-white);
    padding: 1rem 0;
    border-bottom: 1px solid #E5E5E5;
}

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

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--moss-green);
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--kraft-beige) 0%, #F9F6F0 100%);
    padding: 4rem 0;
}

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

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-product {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--persimmon-orange);
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--moss-green);
    color: white;
}

.btn-secondary:hover {
    background: #3a4a1c;
    transform: translateY(-2px);
}

.btn-product {
    background: var(--light-green);
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.btn-product:hover {
    background: #6ba055;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 4rem 0;
    text-align: center;
}

.about {
    background: var(--warm-white);
}

.about p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
    text-align: center;
}

.about-image {
    text-align: center;
    margin-top: 2rem;
}

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

/* Features Grid */
.features {
    background: var(--kraft-beige);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 1rem;
}

/* Products */
.products {
    background: var(--warm-white);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.product {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product h3,
.product p,
.product-price,
.btn-product {
    padding: 0 1.5rem;
}

.product h3 {
    color: var(--moss-green);
    margin-top: 1rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--persimmon-orange);
    margin: 1rem 0;
}

.btn-product {
    margin: 1rem 1.5rem 1.5rem 1.5rem;
    padding: 0 1.5rem;
}

/* How It Works */
.how-it-works {
    background: var(--kraft-beige);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--persimmon-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Services */
.services {
    background: var(--warm-white);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-item {
    background: var(--light-green);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    background: var(--kraft-beige);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial cite {
    color: var(--moss-green);
    font-weight: 600;
    font-style: normal;
}

/* Contact */
.contact {
    background: var(--warm-white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item h3 {
    color: var(--moss-green);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--persimmon-orange);
    text-decoration: none;
}

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

/* Footer */
.footer {
    background: var(--moss-green);
    color: white;
    padding: 2rem 0;
}

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

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo .brand-name {
    color: white;
}

.footer-description {
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;

.footer-links a:hover {
    color: var(--persimmon-orange);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    margin: 0;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--persimmon-orange);
}

.footer-bottom {
    border-top: 1px solid #5a6d2a;
    padding-top: 1.5rem;
    text-align: center;
}

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

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, var(--kraft-beige), #E8E4D9);
    border: 2px dashed var(--light-green);
    border-radius: 8px;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--moss-green);
    font-weight: 600;
    margin: 1rem 0;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
}