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

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

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(to right, #6AAF50, #4DA27A);
    color: white;
    border: none;
}

.primary-btn:hover {
    background: linear-gradient(to right, #5A9F40, #3D926A);
}

.secondary-btn {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.secondary-btn:hover {
    background: #f9f9f9;
}

.outline-btn {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.outline-btn:hover {
    background: #f9f9f9;
}

/* Header Styles */
header {
    background: linear-gradient(to right, #6AAF50, #4DA27A);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    margin-bottom: 0;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    position: relative;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: white;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin-bottom: 5px;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.hero-img {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 30px;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.what-we-do h2 {
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.service {
    flex: 1;
    min-width: 300px;
    margin: 0 15px 30px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    text-align: center;
}

.about-us h2 {
    margin-bottom: 30px;
}

.about-us p {
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Service Cards */
.service-cards {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 40px;
    height: 40px;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
}

.why-us-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.why-us-img {
    flex: 1;
    min-width: 300px;
    margin-right: 40px;
}

.why-us-text {
    flex: 2;
    min-width: 300px;
}

.why-us-text h2 {
    margin-bottom: 30px;
}

.why-us-text h3 {
    margin-top: 25px;
    color: #4DA27A;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-img {
    height: 200px;
    overflow: hidden;
}

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

.project-info {
    padding: 20px;
    text-align: center;
    background-color: #4DA27A;
    color: white;
}

.project-info h3 {
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.testimonial h3 {
    color: #4DA27A;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.faq h2 {
    margin-bottom: 40px;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #4DA27A;
    border-radius: 8px;
    text-align: left;
    color: white;
}

.faq-item h3 {
    margin-bottom: 10px;
}

/* Contact Form */
.contact {
    padding: 80px 0;
    background: linear-gradient(to right, #6AAF50, #4DA27A);
    color: white;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
}

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

input, textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

form button {
    align-self: center;
    width: 100%;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #6AAF50;
    color: white;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h2 {
    margin-bottom: 0;
}

.footer-text {
    max-width: 500px;
    margin: 20px 0;
}

.footer-links a {
    margin-left: 20px;
    text-decoration: underline;
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(106, 175, 80, 0.9);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-notification.show {
    display: block;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-buttons {
    margin-top: 20px;
}

.cookie-buttons button {
    margin: 0 10px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .service, .card, .project, .testimonial {
        min-width: 45%;
    }
    
    .why-us-img {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .why-us-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #6AAF50, #4DA27A);
        padding: 20px;
    }
    
    .main-nav.active ul {
        flex-direction: column;
    }
    
    .main-nav.active ul li {
        margin: 10px 0;
    }
    
    .service, .card, .project, .testimonial {
        min-width: 100%;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}

html {
    scroll-behavior: smooth;
}

.thank-section {
    padding: 80px 0;
    text-align: center;
}

.main-section {
    padding: 80px 0;
}

.main-section h1 {
    text-align: center;
}