.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: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #3d4266;
  color: white;
  padding: 30px;
  border-radius: 16px;
  max-width: 400px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
}

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

.cookie-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.9;
}

.cookie-btn {
  background: #6366f1;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-btn:hover {
  background: #5b5df0;
}

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

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

.nav-logo span {
  font-size: 18px;
  font-weight: 700;
  color: #3d4266;
  letter-spacing: 1px;
}

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

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

.nav-menu a:hover {
  color: #6366f1;
}

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

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

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

/* Hero Section */
.hero {
  background: #3d4266;
  color: white;
  padding: 80px 0;
}

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

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

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

.btn-primary {
  background: #6366f1;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: #5b5df0;
}

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

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

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

.why-choose h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #3d4266;
  margin-bottom: 60px;
}

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

.feature-card {
  text-align: center;
  padding: 20px;
}

.feature-number {
  width: 80px;
  height: 80px;
  background: #6366f1;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #3d4266;
}

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

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

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

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

.service-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.service-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #3d4266;
}

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

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

/* About Section */
.about {
  padding: 80px 0;
  background: #3d4266;
  color: white;
  text-align: center;
}

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

.about p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}

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

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #3d4266;
}

.testimonial-card p {
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input {
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  transition: border-color 0.3s;
}

.contact-form input:focus {
  outline: none;
  border-color: #6366f1;
}

.contact-info {
  color: #666;
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 5px;
}

/* Footer */
.footer {
  background: #3d4266;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer p {
  opacity: 0.6;
  font-size: 14px;
}

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

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding-top: 50px;
    transition: left 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .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-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

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

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

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

  .cookie-popup {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 10px;
  }

  .footer-links a {
    display: block;
    margin: 10px 0;
  }
}

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

  .hero {
    padding: 60px 0;
  }

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

  .why-choose,
  .services,
  .about,
  .testimonials,
  .contact {
    padding: 60px 0;
  }

  .why-choose h2,
  .services h2,
  .about h2,
  .testimonials h2 {
    font-size: 28px;
  }

  .service-item,
  .testimonial-card {
    padding: 20px;
  }

  .feature-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
