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

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

  margin-bottom: 30px;
}

.success__text {
  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: #000;
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: #ff8c00;
  border: 2px solid #ff8c00;
}

.btn-outline:hover {
  background: #ff8c00;
  color: white;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo a {
  font-size: 28px;
  font-weight: 800;
  color: #2b5ce6;
  text-decoration: none;
  letter-spacing: 2px;
}

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

.nav-list a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #2b5ce6;
}

.burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2b5ce6, #1e40af);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./img/hero-bg-pattern.svg") no-repeat center;
  background-size: cover;
  opacity: 0.1;
}

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

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Stats Section */
.stats {
  background: #1a1a1a;
  padding: 60px 0;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #ff8c00;
  margin-bottom: 10px;
}

.stat-description {
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: white;
}

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

.about h2 {
  font-size: 36px;
  font-weight: 800;
  color: #2b5ce6;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.about-features {
  margin: 40px 0;
}

.feature {
  margin-bottom: 30px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2b5ce6;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  background: linear-gradient(135deg, #2b5ce6, #1e40af);
  padding: 100px 0;
  color: white;
}

.services h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
}

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

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Packages Section */
.packages {
  padding: 100px 0;
  background: #f8f9fa;
}

.packages h2 {
  font-size: 36px;
  font-weight: 800;
  color: #2b5ce6;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.package-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.package-card.featured {
  border: 2px solid #2b5ce6;
  transform: scale(1.05);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2b5ce6;
  margin-bottom: 10px;
}

.package-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.package-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.package-price {
  margin: 30px 0;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: #2b5ce6;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: white;
}

.faq h2 {
  font-size: 36px;
  font-weight: 800;
  color: #2b5ce6;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #2b5ce6;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: #2b5ce6;
  background: rgba(43, 92, 230, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 25px 0;
  color: #666;
  line-height: 1.6;
}

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

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #2b5ce6, #1e40af);
  padding: 100px 0;
  color: white;
}

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

.contact h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.contact-info {
  margin-top: 40px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

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

.contact-image img {
  width: 86%;
  height: 50% !important;
  object-fit: cover;
}

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

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

.footer-logo h3 {
  font-size: 28px;
  font-weight: 800;
  color: #2b5ce6;
  letter-spacing: 2px;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  font-size: 12px;
  color: #666;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 30px;
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  display: none;
  transition: all 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
  display: block;
}

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

.cookie-icon {
  width: 40px;
  height: 40px;
}

.cookie-icon img {
  width: 100%;
  height: 100%;
}

.cookie-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2b5ce6;
  margin-bottom: 10px;
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 12px 24px;
  font-size: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Header Mobile */
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    padding: 50px 30px;
    gap: 30px;
  }

  .nav-list a {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  /* Hero Mobile */
  .hero {
    padding: 100px 0 60px;
  }

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

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

  /* Stats Mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* About Mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about h2 {
    font-size: 28px;
    text-align: center;
  }

  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  /* Packages Mobile */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-card.featured {
    transform: none;
  }

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

  /* FAQ Mobile */
  .faq h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 14px;
    padding: 20px 0;
  }

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

  .contact h2 {
    font-size: 28px;
    text-align: center;
  }

  .contact-image {
    position: static;
    width: 100%;
    height: 300px;
    margin-top: 30px;
  }

  .contact-image img {
    height: 100%;
    width: 100%;
  }

  /* Footer Mobile */
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

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

  /* Cookie Mobile */
  .cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 20px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

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

  .btn {
    padding: 12px 24px;
    font-size: 12px;
  }

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

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

.hero-content,
.about-content,
.service-card,
.package-card,
.faq-item {
  animation: fadeInUp 0.6s ease forwards;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #2b5ce6;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1e40af;
}
