.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;
}

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;
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Buttons */
.btn-primary {
  background: transparent;
  color: #333;
  border: 2px solid #333;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: #333;
  color: white;
}

.btn-secondary {
  background: #3d2914;
  color: white;
  border: none;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background: #2d1f0f;
}

.btn-package {
  background: #3d2914;
  color: white;
  border: none;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.btn-package.light {
  background: white;
  color: #3d2914;
}

.btn-package:hover {
  opacity: 0.9;
}

.btn-form {
  background: white;
  color: #3d2914;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-form:hover {
  opacity: 0.9;
}

/* Cookies Popup */
.cookies-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookies-content {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.cookies-content h3 {
  margin-bottom: 15px;
  color: #333;
}

.cookies-content p {
  margin-bottom: 20px;
  color: #666;
}

.cookies-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cookies {
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookies.accept {
  background: #3d2914;
  color: white;
}

.btn-cookies.decline {
  background: #ccc;
  color: #333;
}

.cookies-link {
  color: #3d2914;
  text-decoration: underline;
}

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

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: #333;
}

.logo-icon {
  font-size: 24px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
}

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

.nav-menu a:hover {
  color: #3d2914;
}

.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);
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

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

/* Hero Section */
.hero {
  background: #f8f8f8;
  padding: 80px 0;
}

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

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

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

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

/* Strategies Section */
.strategies {
  padding: 80px 0;
  background: white;
}

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

.strategies-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.strategies-text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #333;
}

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

/* Packages Section */
.packages {
  padding: 80px 0;
  background: #f8f8f8;
}

.packages h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.packages-desc {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 50px;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.package-card {
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
}

.package-card.light {
  background: white;
  color: #333;
}

.package-card.dark {
  background: #3d2914;
  color: white;
}

.package-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.package-card li {
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}

.package-card li:before {
  content: "• ";
  margin-right: 8px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

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

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

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #333;
}

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

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #3d2914;
  color: white;
}

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

.contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details p {
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-family: "K2D", sans-serif;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

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

/* Footer */
.footer {
  background: #f8f8f8;
  padding: 40px 0 20px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: #333;
}

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

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

.footer-nav a:hover {
  color: #3d2914;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #666;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .strategies-content,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .strategies-text h2,
  .about-text h2,
  .contact-info h2 {
    font-size: 32px;
  }

  .packages h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .header .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 60px 0;
  }

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

  .hero-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .strategies,
  .about,
  .contact-section {
    padding: 60px 0;
  }

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

  .footer-nav {
    order: -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

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

  .btn-cookies {
    width: 200px;
  }
}

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

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

  .strategies-text h2,
  .about-text h2,
  .contact-info h2 {
    font-size: 28px;
  }

  .packages h2 {
    font-size: 28px;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding: 30px 20px;
  }

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