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

.success__text {
  margin-bottom: 27px;
}

.policy__text h2 {
  text-align: left;
  font-size: 22px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 17px;
}

.policy__text {
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
}

.btn-primary {
  background-color: #77a08c;
  color: white;
}

.btn-primary:hover {
  background-color: #6985a0;
}

.btn-submit {
  background-color: #fff;
  color: #31483D;
  border: 2px solid #31483D;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.btn-submit:hover {
  background-color: #31483D;
  color: white;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 350px;
  z-index: 1000;
  border: 1px solid #e0e0e0;
  display: none;
}

.cookie-popup.show {
  display: block;
  animation: slideInUp 0.3s ease;
}

.cookie-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #31483D;
}

.cookie-content p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
}

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

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: #27ae60;
  color: white;
}

.cookie-btn.accept:hover {
  background-color: #219a52;
}

.cookie-btn.decline {
  background-color: #e74c3c;
  color: white;
}

.cookie-btn.decline:hover {
  background-color: #c0392b;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

.nav-logo a {
  font-size: 28px;
  font-weight: 800;
  color: #31483D;
  text-decoration: none;
}

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

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

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

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

.nav-toggle span {
  display: block;
  height: 3px;
  width: 25px;
  background: #31483D;
  margin: 3px 0;
  transition: 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  background: #f8f9fa;
  padding: 120px 0 80px;
  margin-top: 70px;
}

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

.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: #31483D;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Expectations Section */
.expectations {
  background: #31483D;
  color: white;
  padding: 80px 0;
}

.expectations h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.expectations-intro {
  text-align: center;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 60px;
  opacity: 0.9;
}

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

.expectation-card {
  text-align: left;
}

.expectation-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ecf0f1;
}

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

.cta-section {
  text-align: center;
  margin-top: 40px;
}

/* Tips & Advice Section */
.tips-advice {
  padding: 80px 0;
  background: white;
}

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

.tips-text h2 {
  font-size: 36px;
  color: #31483D;
  margin-bottom: 25px;
  font-weight: 700;
}

.tips-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.tips-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Insights Section */
.insights {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.insights-text h2 {
  font-size: 36px;
  color: #31483D;
  margin-bottom: 25px;
  font-weight: 700;
}

.insights-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.insights-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Expert Opinions Section */
.expert-opinions {
  background: #31483D;
  color: white;
  padding: 80px 0;
}

.expert-opinions h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

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

.expert-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ecf0f1;
  font-weight: 600;
}

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

.expert-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.expert-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.expert-details h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ecf0f1;
}

/* Contact Form Section */
.contact-form {
  background: #31483D;
  color: white;
  padding: 80px 0;
}

.contact-form h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-form > .container > p {
  text-align: center;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.9;
}

.form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: white;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #eee;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-link img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-link:hover img {
  opacity: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

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

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero Section */
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  /* Tips & Advice and Insights */
  .tips-content,
  .insights-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .insights-content {
    grid-template-rows: auto auto;
  }

  .insights-image {
    order: -1;
  }

  /* Expert Cards */
  .experts-grid {
    grid-template-columns: 1fr;
  }

  .expert-card {
    padding: 20px;
  }

  /* Expectations Grid */
  .expectations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Section Headings */
  .expectations h2,
  .tips-text h2,
  .insights-text h2,
  .expert-opinions h2,
  .contact-form h2 {
    font-size: 28px;
  }

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

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

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

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

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

  .hero-content h1 {
    font-size: 26px;
  }

  .expectations,
  .tips-advice,
  .insights,
  .expert-opinions,
  .contact-form {
    padding: 60px 0;
  }

  .expert-card {
    padding: 15px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 14px;
  }
}
