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

html {
  scroll-behavior: smooth;
}

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

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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: #f5d5d0;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
}

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

.cookie-popup h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.cookie-popup p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.cookie-popup a {
  color: #2e86ab;
  text-decoration: underline;
}

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

.btn-accept {
  background: #333;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-accept:hover {
  background: #555;
}

.btn-reject {
  background: transparent;
  color: #333;
  border: 2px solid #333;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

.nav-brand a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #333;
}

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

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

.nav-link:hover {
  color: #e55a4e;
}

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

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

.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 Section */
.hero {
  background: #f5d5d0;
  padding: 60px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

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

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

.hero-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.hero-cta {
  font-weight: 600;
  color: #333;
  font-size: 18px;
  margin-bottom: 30px !important;
}

.google-play-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}

.google-play-btn:hover {
  transform: translateY(-2px);
}

.google-play-btn img {
  height: 60px;
  width: auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
}

/* Description Section */
.description {
  background: #f5d5d0;
  padding: 80px 0;
}

.description h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.description-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}

.description-text {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.8;
}

.features {
  list-style: none;
  margin: 40px 0;
}

.features li {
  font-size: 16px;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.features li::before {
  content: "•";
  color: #e55a4e;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Reviews Section */
.reviews {
  background: white;
  padding: 80px 0;
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.review-card {
  background: #f5d5d0;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
}

.stars {
  color: #ffb800;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card cite {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  font-style: normal;
}

/* Gallery Section */
.gallery {
  background: #f5d5d0;
  padding: 80px 0;
  margin-bottom: 40px;
}

.gallery h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.gallery-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

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

/* Contact Section */
.contact {
  background: #f5d5d0;
  padding: 80px 0;
}

.contact h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

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

.contact-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-details {
  margin: 30px 0;
  padding: 20px 0;
}

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

.download-btn {
  display: inline-block;
  background: transparent;
  color: #2e86ab;
  border: 2px solid #2e86ab;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #2e86ab;
  color: white;
}

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

.contact-form input {
  padding: 15px;
  border: 2px solid #2e86ab;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  background: white;
  transition: border-color 0.3s ease;
}

.contact-form input:focus {
  outline: none;
  border-color: #1a5a7a;
}

.submit-btn {
  background: #2e86ab;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #1a5a7a;
}

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

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

.footer-brand a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #333;
}

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

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@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;
    padding-top: 50px;
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

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

  .nav-link {
    font-size: 18px;
    margin-bottom: 20px;
  }

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

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

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

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

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

  .description h2,
  .reviews h2,
  .gallery h2,
  .contact h2 {
    font-size: 28px;
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
    padding: 20px;
  }

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

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

  .nav {
    padding: 15px 15px;
  }

  .container {
    padding: 0 15px;
  }
}

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

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

.hero-text,
.description,
.reviews,
.gallery,
.contact {
  animation: fadeInUp 0.8s ease-out;
}
