.policy,
.success,
.contact-section {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__link {
  color: #000000;
}

html {
  scroll-behavior: smooth;
}

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

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

body {
  font-family: "Aleo", serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
}

.cookie-content p {
  color: white;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cookie-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cookie-config {
  background: transparent;
  border: 2px solid #4a7c59;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Aleo", serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-config:hover {
  background: #4a7c59;
  color: white;
}

.btn-cookie-accept {
  background: #4a7c59;
  border: 2px solid #4a7c59;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Aleo", serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
  background: #3d6549;
  border-color: #3d6549;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav-brand span {
  font-size: 18px;
  font-weight: 700;
  color: #4a7c59;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

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

.nav-menu a:hover {
  color: #4a7c59;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  background: #4a7c59;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero > .container > p {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

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

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

.service-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

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

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: white;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 400;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

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

.why-item {
  text-align: center;
}

.why-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

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

/* Success Cases Section */
.success-cases {
  padding: 80px 0;
  background: #f8f9fa;
}

.success-cases h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 400;
}

.cases-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.case-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

.case-content.reverse .case-text {
  order: 2;
}

.case-content.reverse .case-image {
  order: 1;
}

.case-text {
  padding: 40px;
  background: #e8f5e8;
}

.case-text h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #333;
  font-weight: 600;
}

.case-details p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.case-details strong {
  color: #4a7c59;
}

.case-image {
  height: 100%;
}

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

/* Methodology Section */
.methodology {
  padding: 80px 0;
  background: white;
}

.methodology h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
  font-weight: 400;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: #4a7c59;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

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

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #4a7c59;
  color: white;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 400;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: white;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-family: "Aleo", serif;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-submit {
  background: white;
  color: #4a7c59;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: "Aleo", serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
}

.btn-submit:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 30px 0;
}

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

.footer-right {
  display: flex;
  gap: 30px;
}

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

.footer-right a:hover {
  color: #4a7c59;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none !important;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100vh);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    display: block !important;
    transform: translateY(0);
  }

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

  .hero > .container > p {
    font-size: 1.4rem;
  }

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

  .why-choose h2,
  .success-cases h2,
  .methodology h2,
  .contact h2 {
    font-size: 2rem;
  }

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

  .case-content.reverse .case-text,
  .case-content.reverse .case-image {
    order: unset;
  }

  .case-text {
    padding: 30px 20px;
  }

  .methodology-steps {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

  .hero {
    padding: 60px 0;
  }

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

  .hero > .container > p {
    font-size: 1.2rem;
  }

  .services,
  .why-choose,
  .success-cases,
  .methodology,
  .contact {
    padding: 60px 0;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .case-text {
    padding: 25px 15px;
  }

  .step {
    padding: 20px 10px;
  }

  .step-number {
    font-size: 2.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Button hover effects */
.service-item,
.why-item,
.case-item {
  transition: all 0.3s ease;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-item,
.why-item,
.case-item,
.step {
  animation: fadeInUp 0.6s ease forwards;
}
