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

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

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

/* Header Styles */
.header {
  background-color: #2c5530;
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
}

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

.logo-img {
  width: 40px;
  height: 40px;
}

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

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #90c695;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Main Content Spacing */
main {
  margin-top: 80px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
  color: white;
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Button Styles */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-accept-all,
.btn-necessary,
.btn-settings,
.btn-save,
.btn-cancel {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #90c695;
  color: #2c5530;
}

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

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #2c5530;
}

.btn-submit {
  background-color: #2c5530;
  color: white;
  width: 100%;
}

.btn-submit:hover {
  background-color: #1e3a22;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

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

/* Company Info Section */
.company-info {
  background-color: #f8f9fa;
}

.company-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.company-text {
  flex: 2;
}

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

.company-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}

.stat h3 {
  font-size: 2rem;
  color: #2c5530;
  margin-bottom: 0.5rem;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

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

/* Advantages Grid */
.advantages {
  background-color: #f8f9fa;
}

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

.advantage-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.advantage-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

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

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
}

.quote-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 1rem;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-author h4 {
  color: #2c5530;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #777;
  font-size: 0.9rem;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  margin-bottom: 1rem;
}

.blog-content h3 a {
  color: #2c5530;
  text-decoration: none;
}

.blog-content h3 a:hover {
  color: #4a7c59;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  color: #777;
  font-size: 0.9rem;
}

.blog-meta img {
  width: 16px;
  height: 16px;
}

.read-more {
  color: #4a7c59;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  color: #2c5530;
}

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

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

.contact-info h3 {
  color: #2c5530;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  color: #2c5530;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c5530;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #4a7c59;
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Forms */
.contact-form,
.newsletter-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
  color: #2c5530;
  margin-bottom: 2rem;
}

.form-row {
  margin-bottom: 1.5rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #4a7c59;
}

.form-checkbox {
  margin-bottom: 2rem;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
}

.form-checkbox a {
  color: #4a7c59;
}

.newsletter-form {
  padding: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
}

.newsletter-form button {
  padding: 10px 15px;
  background-color: #2c5530;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.newsletter-form button img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* Footer */
.footer {
  background-color: #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 {
  margin-bottom: 1rem;
  color: #90c695;
}

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

.footer-logo-img {
  width: 30px;
  height: 30px;
}

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

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

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

.footer-section a:hover {
  color: #90c695;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c5530;
  color: white;
  padding: 1rem;
  z-index: 1001;
  display: none;
}

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

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

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

.btn-accept-all {
  background-color: #90c695;
  color: #2c5530;
}

.btn-necessary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-settings {
  background-color: transparent;
  color: white;
  border: 2px solid #90c695;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1002;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

.modal-content h3 {
  color: #2c5530;
  margin-bottom: 1.5rem;
}

.cookie-categories {
  margin-bottom: 2rem;
}

.cookie-category {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.cookie-category label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.cookie-category span {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.25rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Legal Pages */
.legal-page {
  padding: 2rem 0;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.legal-header h1 {
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content section {
  margin-bottom: 2rem;
  padding: 0;
}

.legal-content h2 {
  color: #2c5530;
  margin-bottom: 1rem;
  border-bottom: 2px solid #90c695;
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  color: #4a7c59;
  margin: 1.5rem 0 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
  margin-top: 1rem;
}

/* Thanks Page */
.thanks-page {
  padding: 4rem 0;
  text-align: center;
}

.thanks-content {
  max-width: 800px;
  margin: 0 auto;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

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

.thanks-content > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #555;
}

.next-steps {
  margin-bottom: 3rem;
}

.next-steps h2 {
  color: #2c5530;
  margin-bottom: 2rem;
}

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

.step {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.step h3 {
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.contact-reminder {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c5530;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
}

.phone-link img {
  width: 20px;
  height: 20px;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .company-content {
    flex-direction: column;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-card {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.nav-menu.active {
  position: absolute;
  top: 80px;
  left: 0px;
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background-color: #2c5530;
  z-index: 1000;
}