
:root {
  --primary: #2C5E1A;
  --secondary: #59802A;
  --accent: #C96D36;
  --accent-light: #E6C06A;
  --bg-cream: #F9F7F1;
  --bg-light: #F2F2F2;
  --white: #FFFFFF;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.bg-primary {
  background-color: var(--secondary);
}


.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
}

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

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #4A6D22;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}


header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo-container img {
  max-height: 40px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
}


.hero {
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 6rem 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}


.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border-bottom: 4px solid var(--primary);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}


.feature-section {
  background-color: var(--bg-light);
  padding: 4rem 0;
}

.feature-item {
  margin-bottom: 2rem;
}

.feature-icon {
  color: var(--accent);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}


.detailed-service {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detailed-service:last-child {
  border-bottom: none;
}

.detailed-service-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.deliverables-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.deliverables-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}


.process-step {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2.5rem;
}

.process-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}


.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  background-color: var(--white);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
  padding: 1.25rem;
  max-height: 500px;
}

.faq-toggle {
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}


.contact-form {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 94, 26, 0.15);
  outline: none;
}

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

.form-text {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}


.article-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 2rem;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card:hover .article-img img {
  transform: scale(1.05);
}

.article-content {
  padding: 1.5rem;
}

.article-category {
  display: inline-block;
  background-color: var(--bg-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.article-date {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}


footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact div {
  margin-bottom: 0.75rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-medium);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 90;
  display: none;
}

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

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

.cookie-settings {
  background-color: var(--white);
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  padding: 2rem;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-category-title {
  font-weight: 500;
}


.iti {
  width: 100%;
}


@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    width: 80%;
    max-width: 300px;
    z-index: 100;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  
  .mobile-menu.show {
    transform: translateX(0);
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-consent-buttons button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
}