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

body {
    font-family: 'Unbounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Buttons */
.btn-primary {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    padding: 30px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2d5d31;
}

.cookie-text p {
    color: #666;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 250px;
}

.btn-cookie {
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cookie.accept-all {
    background: #4CAF50;
    color: white;
    border: none;
}

.btn-cookie.accept-all:hover {
    background: #45a049;
}

.btn-cookie.reject {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-cookie.reject:hover {
    background: #4CAF50;
    color: white;
}

.btn-cookie.settings {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-cookie.settings:hover {
    background: #4CAF50;
    color: white;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

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

.logo  {
  color: inherit;
  text-decoration: unset;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #4CAF50;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.6;
}


/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 36px;

    margin-bottom: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 auto;
}

.service-column {
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
  padding: 24px;
  border-radius: 30px;
}

.service-column h3 {
    font-size: 24px;

    margin-bottom: 12px;
}

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

.service-column li {
    padding: 10px 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(4, 29, 7, 1);
    color: white;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: #2d5d31;
    margin-bottom: 60px;
}

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

.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    object-fit: cover;
}

.testimonial-content h3 {
    font-size: 18px;
    color: #2d5d31;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: #2d5d31;
    margin-bottom: 30px;
}

.about-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 36px;
    color: #2d5d31;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 18px;
    color: #2d5d31;
}

.contact-form {
    text-align: center;
}

/* Footer */
.footer {
    background: #2d5d31;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer-content a,
.footer-content p {
    font-size: 14px;
    text-decoration: unset;
    color: inherit;
    opacity: 0.8;
}

/* Thank You Page Styles */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    text-align: center;
    padding: 40px 20px;
}

.thank-you-content h1 {
    font-size: 48px;
    color: #2d5d31;
    margin-bottom: 30px;
}

.thank-you-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nav {
      display: none;
    }
    .header .container {
      justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        min-width: auto;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        min-width: auto;
        width: 100%;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .testimonial-item {
      flex-direction: column;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .services h2,
    .features h2,
    .testimonials h2,
    .about-text h2 {
        font-size: 28px;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .cookie-banner {
        padding: 20px;
    }
    
    .thank-you-content h1 {
        font-size: 32px;
    }
}

#contactForm {
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
}

 .form-group {
            margin-bottom: 24px;
            position: relative;

        }

        .form-group:last-of-type {
            margin-bottom: 32px;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e8ecf4;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 500;
            color: #2d3748;
            background: #f8fafc;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus {
            border-color: #10b981;
            background: white;
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
            transform: translateY(-2px);
        }

        .form-input::placeholder {
            color: #64748b;
            font-weight: 400;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }

        .submit-btn:hover:before {
            left: 100%;
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .form-title {
            text-align: center;
            margin-bottom: 32px;
            color: #1a202c;
            font-size: 28px;
            font-weight: 700;
        }

        .success-message {
            display: none;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 16px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 500;
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-input:valid {
            border-color: #10b981;
        }

        .form-input:invalid:not(:placeholder-shown) {
            border-color: #ef4444;
        }

        @media (max-width: 480px) {
            .form-container {
                padding: 24px;
                margin: 10px;
            }
            
            .form-title {
                font-size: 24px;
                margin-bottom: 24px;
            }
        }

        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .policy {
          margin-top: 80px;
          padding-top: 60px;
          padding-bottom: 60px;
        }

        .policy h1 {
          text-align: center;
          margin-bottom: 20px;
        }

        .policy-content {
          display: flex;
          flex-direction: column;
          gap: 14px;
          font-size: 14px;
          line-height: 1.6;
        }

        .policy-content li {
          list-style-position: inside;
        }

        .policy-content a {
          text-decoration: unset;
          color: inherit;
        }