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

html {
    scroll-behavior: smooth;
}

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

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

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

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #2C2C2C;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #6B8E5A;
    text-decoration: none;
}

a:hover {
    color: #4A6B3A;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background-color: #F5F3F0;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    text-decoration: none;
}

.brand-name:hover {
    color: #6B8E5A;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

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

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

.hero-photo {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #6B8E5A;
    color: white;
}

.btn-primary:hover {
    background-color: #4A6B3A;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #6B8E5A;
    border: 2px solid #6B8E5A;
}

.btn-secondary:hover {
    background-color: #6B8E5A;
    color: white;
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #D4E3D0 0%, #A8C49A 100%);
    color: #4A6B3A;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

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

.centered-section .section-header,
.centered-section .about-grid,
.centered-section .services-grid,
.centered-section .process-steps,
.centered-section .packages-grid,
.centered-section .tech-content,
.centered-section .sustainability-grid,
.centered-section .testimonials-grid {
    width: 100%;
    max-width: 1200px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
}

/* About Section */
.about {
    background-color: white;
}

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

.about-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: #F5F3F0;
}

.about-item .icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Services Section */
.services {
    background-color: #F5F3F0;
}

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

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
}

/* Process Section */
.process {
    background-color: white;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6B8E5A;
    margin-bottom: 1rem;
}

/* Packages Section */
.packages {
    background-color: #F5F3F0;
}

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

.package-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.package-card.featured {
    border: 3px solid #6B8E5A;
    transform: scale(1.05);
}

.package-card h3 {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6B8E5A;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.package-card li:last-child {
    border-bottom: none;
}

/* Technology Section */
.technology {
    background-color: white;
}

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

.tech-text ul {
    list-style: none;
    padding-left: 0;
}

.tech-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.tech-text li:before {
    content: "✓";
    color: #6B8E5A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tech-photo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
/* Sustainability Section */
.sustainability {
    background-color: #F5F3F0;
}

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

.sustainability-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sustainability-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sustainability-item h3 {
    padding: 1.5rem 1.5rem 0;
}

.sustainability-item p {
    padding: 0 1.5rem 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

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

.testimonial {
    background-color: #F5F3F0;
    padding: 2rem;
    border-radius: 12px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.author {
    font-weight: 600;
    color: #6B8E5A;
}

/* Contact Section */
.contact {
    background-color: #F5F3F0;
}

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

.contact-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-item .icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.contact-item a {
    color: #6B8E5A;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2C2C2C;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

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

.footer-brand .brand-name {
    color: white;
    font-size: 1.25rem;
}

.footer-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #6B8E5A;
    font-size: 1.1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-photo {
        height: 250px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
    
    .price {
        font-size: 2rem;
    }
}