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

.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: #fff;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Unbounded", sans-serif;
  background-color: #1a1a2e;
  color: #ffffff;
  line-height: 1.6;
}

.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;
  transition: opacity 0.3s ease;
}

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

.cookie-content {
  background: linear-gradient(135deg, #b2ff00 0%, #ff9500 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  text-align: center;
  color: #1a1a2e;
  position: relative;
}

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

.cookie-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a2e;
}

.cookie-content p {
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #1a1a2e;
}

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

.cookie-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: #1a1a2e;
  color: #ffffff;
}

.cookie-btn.accept:hover {
  background-color: #2a2a4e;
}

.cookie-btn.settings {
  background-color: transparent;
  color: #1a1a2e;
  border: 2px solid #1a1a2e;
}

.cookie-btn.settings:hover {
  background-color: #1a1a2e;
  color: #ffffff;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
}

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

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

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

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

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

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

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  color: #b2ff00;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -1px;
}

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

.hero-image {
  position: relative;
}

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #b2ff00;
  color: #1a1a2e;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Unbounded", sans-serif;
}

.btn-primary:hover {
  background-color: #9de600;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(178, 255, 0, 0.3);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: #1a1a2e;
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  color: #b2ff00;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.about-intro {
  font-size: 16px;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about h3 {
  font-size: 28px;
  font-weight: 600;
  color: #b2ff00;
  text-align: center;
  margin-bottom: 40px;
}

.why-us {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.why-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.why-item p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.about .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #16213e;
}

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

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

.service-card {
  background-color: rgba(26, 26, 46, 0.8);
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(178, 255, 0, 0.1);
}

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

  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.3;
}

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

.services .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background-color: #1a1a2e;
}

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

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

.reviews-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #b2ff00;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.review-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(22, 33, 62, 0.5);
  border-radius: 10px;
}

.review-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #b2ff00;
  margin-bottom: 10px;
}

.review-item p {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
  line-height: 1.5;
  font-style: italic;
}

.stars {
  color: #b2ff00;
  font-size: 16px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #16213e;
}

.contact-banner {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 60px;
}

.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  color: #b2ff00;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

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

.contact-details p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
}

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

.contact-form input,
.contact-form textarea {
  background-color: rgba(26, 26, 46, 0.8);
  border: 2px solid rgba(178, 255, 0, 0.3);
  border-radius: 10px;
  padding: 15px;
  color: #ffffff;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

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

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

/* Footer */
.footer {
  background-color: #1a1a2e;
  padding: 40px 0;
  border-top: 1px solid rgba(178, 255, 0, 0.2);
}

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

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
  }

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

  .nav-menu a {
    font-size: 18px;
    padding: 15px 0;
  }

  .burger-menu {
    display: flex;
  }

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

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

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

  .hero-text p {
    font-size: 14px;
  }

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

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

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

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

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

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

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

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

  .cookie-content h3 {
    font-size: 20px;
  }

  .cookie-content p {
    font-size: 13px;
  }
}

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

  .hero {
    padding: 100px 0 60px;
  }

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

  .about,
  .services,
  .reviews,
  .contact {
    padding: 60px 0;
  }

  .about h2,
  .services h2,
  .reviews-text h2,
  .contact-info h2 {
    font-size: 24px;
  }

  .service-card {
    padding: 20px;
  }

  .contact-banner {
    height: 150px;
  }
}
