.policy,
.success {
  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;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

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: "Maven Pro", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e2b3a;
  color: white;
  padding: 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.cookie-content p {
  margin-bottom: 10px;
  line-height: 1.5;
}

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

.btn-accept,
.btn-learn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Maven Pro", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-accept {
  background: #ff6b35;
  color: white;
}

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

.btn-learn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-learn:hover {
  background: white;
  color: #1e2b3a;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(30, 43, 58, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 0;
}

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

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.nav-menu {
  display: flex;
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 92vh;
  overflow: hidden;
  background-color: #1e2b3a;
}
.hero .container {
  display: flex;
  gap: 30px;
  align-items: center;
  color: white;
  flex-direction: column-reverse;
  padding: 150px 14px 30px;
}

@media (min-width: 1200px) {
  .hero .container {
    flex-direction: row;
  }

  .hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.hero-left {
  width: 100%;
  max-width: 588px;
}

.hero-img {
  height: 430px;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

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

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: #ff6b35;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e55a2e;
  transform: translateY(-2px);
}

/* Explore Section */
.explore {
  padding: 80px 0;
  background: #f8f9fa;
}

.explore h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #1e2b3a;
}

.explore-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #666;
}

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

.explore-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-5px);
}

.explore-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e2b3a;
}

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

/* Apart Section */
.apart {
  padding: 80px 0;
  background: #1e2b3a;
  color: white;
}

.apart h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

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

.apart-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.apart-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.apart-card p {
  line-height: 1.6;
  opacity: 0.9;
}

/* Sketch Section */
.sketch-section {
  margin-top: 60px;
}

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

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

.sketch-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.sketch-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Stages Section */
.stages {
  padding: 80px 0;
  background: white;
}

.stages h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #1e2b3a;
}

.stages-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
}

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

.stage-card {
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stage-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.stage-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
}

.stage-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e2b3a;
}

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

/* Fresh Entries */
.fresh-entries {
  margin-top: 60px;
}

.fresh-entries h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #1e2b3a;
}

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

.entry-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.entry-card:hover {
  transform: translateY(-5px);
}

.entry-image {
  height: 200px;
  overflow: hidden;
}

.entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px 20px 15px;
  color: #1e2b3a;
}

.entry-card p {
  margin: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}

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

.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #1e2b3a;
}

.testimonials-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e2b3a;
}

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

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background: #1e2b3a;
  color: white;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.newsletter-note {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 40px !important;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.form-input {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-family: "Maven Pro", sans-serif;
  font-size: 1rem;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.btn-submit {
  background: #ff6b35;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-family: "Maven Pro", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #e55a2e;
  transform: translateY(-2px);
}

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

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

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

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

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

.footer-copyright p {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sketch-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sketch-image {
    order: -1;
  }
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #1e2b3a;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }

  .explore,
  .apart,
  .stages,
  .testimonials,
  .newsletter {
    padding: 60px 0;
  }

  .explore h2,
  .apart h2,
  .stages h2,
  .testimonials h2,
  .newsletter h2 {
    font-size: 2rem;
  }

  .sketch-text h3 {
    font-size: 1.5rem;
  }

  .newsletter-form {
    max-width: 100%;
  }

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

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

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

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

  .explore-grid,
  .apart-grid,
  .stages-grid,
  .testimonials-grid,
  .entries-grid {
    grid-template-columns: 1fr;
  }

  .explore-card,
  .apart-card,
  .stage-card,
  .testimonial-card {
    padding: 20px;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
