* {
    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 */
.navbar {
    background: #2c5530;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #8FBC8F;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.cta-btn {
    background: #FF6B35;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #e55a2b;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(44, 85, 48, 0.8)), #8FBC8F;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-large {
    background: #FF6B35;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-btn-large:hover {
    background: #e55a2b;
}

/* Page Header */
.page-header {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background: white;
}

.services-preview h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.service-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose */
.why-choose {
    padding: 4rem 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 3rem;
}

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

.advantage {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #8FBC8F;
}

.advantage h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

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

/* Services Detail */
.services-detail {
    padding: 4rem 0;
}

.service-detail {
    margin-bottom: 4rem;
}

.service-detail h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid #8FBC8F;
    padding-bottom: 0.5rem;
}

.service-detail h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-detail ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.service-detail li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #2c5530;
    color: white;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.contact-info h3 {
    margin-bottom: 1rem;
    color: #8FBC8F;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #FF6B35;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #e55a2b;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 0;
    background: #8FBC8F;
    text-align: center;
    color: white;
}

.contact-cta h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Realisations */
.realisations-grid {
    padding: 4rem 0;
}

.realisation-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.realisation-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.realisation-card p {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.6;
}

.realisation-card strong {
    color: #2c5530;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #8FBC8F;
}

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

.testimonial cite {
    color: #2c5530;
    font-weight: bold;
}

/* About Sections */
.about-content {
    padding: 4rem 0;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #8FBC8F;
    padding-bottom: 0.5rem;
}

.about-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.about-section li {
    margin-bottom: 0.5rem;
    color: #666;
}

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

.value {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid #8FBC8F;
}

.value h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.value p {
    color: #666;
}

/* Certifications */
.certifications {
    padding: 4rem 0;
    background: #f8f9fa;
}

.certifications h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.certif-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.certif-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.certif-item p {
    color: #666;
}

/* Blog */
.blog-articles {
    padding: 4rem 0;
}

.blog-post {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.blog-post h2 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.post-date {
    color: #8FBC8F;
    font-weight: bold;
    margin-bottom: 1rem;
}

.blog-post h3 {
    color: #2c5530;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.blog-post p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post ul,
.blog-post ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-post li {
    margin-bottom: 0.5rem;
    color: #666;
}

.blog-post strong {
    color: #2c5530;
}

.contact-blog {
    padding: 4rem 0;
    background: #8FBC8F;
    text-align: center;
    color: white;
}

.contact-blog h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-blog p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

.footer-section h4 {
    color: #8FBC8F;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: white;
    text-decoration: none;
    line-height: 1.6;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    border-top: 1px solid #4a7c59;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .certif-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 3rem 0;
    }

    .page-header {
        padding: 2rem 0;
    }

    .services-preview,
    .why-choose,
    .services-detail,
    .contact-section,
    .contact-cta,
    .realisations-grid,
    .testimonials,
    .about-content,
    .certifications,
    .blog-articles,
    .contact-blog {
        padding: 2rem 0;
    }
}