.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__text ul {
  padding-left: 20px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-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;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  text-align: left;
}

.cookie-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cookie-content h3 {
  color: #e74c3c;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cookie-content p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 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: 1000;
}

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

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #e74c3c;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

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

.nav-links a:hover {
  color: #e74c3c;
}

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

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #e74c3c;
  border-radius: 2px;
  transition: 0.3s;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #e74c3c 0%, #8e44ad 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #e74c3c;
  padding: 15px 30px;
  border: 2px solid #e74c3c;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 80px 0;
  background: white;
}

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

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-text p {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.stat-label {
  color: #666;
  font-size: 14px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #e74c3c 0%, #8e44ad 100%);
  color: white;
}

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

.about h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 25px;
  line-height: 1.7;
  opacity: 0.9;
}

.philosophy {
  margin-top: 40px;
}

.philosophy h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Principes Section */
.principes {
  padding: 100px 0;
  background: #f8f9fa;
}

.principes h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 60px;
}

.principes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.principe-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.principe-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c 0%, #8e44ad 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.principe-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

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

.principes-image {
  text-align: center;
}

.principes-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 20px;
}

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

.services h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-card {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  background: linear-gradient(135deg, #e74c3c 0%, #8e44ad 100%);
  color: white;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon img {
  width: 60px;
  height: 60px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: inherit;
}

.service-card p {
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.service-image {
  margin-top: 20px;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #e74c3c 0%, #8e44ad 100%);
  color: white;
}

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

.contact h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-info p {
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details p {
  margin-bottom: 10px;
  opacity: 1;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #e74c3c;
}

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

.contact-form button {
  width: 100%;
}

/* Footer */
.footer {
  background: white;
  padding: 40px 0 20px;
  text-align: center;
}

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

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

.footer-links a {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e74c3c;
}

.footer-copyright {
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.footer-copyright p {
  color: #999;
  font-size: 14px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    transition: left 0.3s ease;
    padding: 40px 20px;
  }

  .nav.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .stats {
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .principes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .cookie-content {
    padding: 30px 20px;
  }

  .cookie-buttons {
    gap: 10px;
  }
}

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

  .hero h1 {
    font-size: 28px;
  }

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

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 14px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .service-card {
    padding: 25px;
  }

  .principe-card {
    padding: 20px;
  }
}

/* Burger Menu Animation */
.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

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

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