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

.success__content {
  padding-block: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.btn-primary {
  background-color: #9acd32;
  color: white;
}

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

.btn-secondary {
  background-color: #9acd32;
  color: white;
}

.btn-secondary:hover {
  background-color: #8bbd28;
  transform: translateY(-2px);
}

.btn-submit {
  background-color: #9acd32;
  color: white;
  padding: 12px 40px;
  border-radius: 25px;
}

.btn-submit:hover {
  background-color: #8bbd28;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  background: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  margin: 20px;
  text-align: center;
}

.cookie-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cookie-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cookie-content a {
  color: #333;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-refuse {
  background: transparent;
  color: #9acd32;
  border: 2px solid #9acd32;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: "Podkova", serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-refuse:hover {
  background-color: #9acd32;
  color: white;
}

.btn-accept {
  background-color: #9acd32;
  color: white;
  border: 2px solid #9acd32;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: "Podkova", serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept:hover {
  background-color: #8bbd28;
}

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

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

.logo {
  text-decoration: none;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

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

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

.nav-list a:hover {
  color: #9acd32;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 999;
  transition: left 0.3s ease;
  padding-top: 80px;
}

.mobile-menu.open {
  left: 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 20px;
}

.mobile-nav-list li {
  margin-bottom: 20px;
}

.mobile-nav-list a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: 500;
}

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

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

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

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

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

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

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.services-header p {
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  padding: 0;
}

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

.service-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* Process Section */
.process {
  padding: 80px 0;
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.process-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-card.highlight {
  background: #9acd32;
  color: white;
}

.process-image {
  height: 100px;
  overflow: hidden;
  margin-bottom: 20px;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-content {
  padding: 30px 25px;
}

.process-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.process-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* Transformation Section */
.transformation {
  padding: 80px 0;
  background: white;
}

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

.transformation-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.transformation-text p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

.transformation-text .btn-secondary {
  margin-top: 20px;
}

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

/* Target Audience Section */
.target-audience {
  padding: 80px 0;
  background: white;
}

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

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.audience-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

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

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

.contact-info address {
  font-style: normal;
  line-height: 2;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  color: #9acd32;
}

.form-container {
  max-width: 600px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-family: "Podkova", serif;
  font-size: 16px;
  background: white;
}

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

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

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

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

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

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

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

/* About Page Specific Styles */

/* Logo Link */
.logo a {
  text-decoration: none;
  color: inherit;
}

/* History Sections */
.history-section {
  padding: 80px 0;
  background: white;
}

.history-section.expansion {
  background: #9acd32;
  color: white;
}

.history-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.2;
}

.history-content > p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.milestones,
.innovations {
  margin: 60px 0;
}

.milestones h3,
.innovations h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.milestones ul,
.innovations ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.milestones li,
.innovations li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.milestones li:before,
.innovations li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #9acd32;
  font-weight: bold;
  font-size: 20px;
}

.history-section.expansion .milestones li:before,
.history-section.expansion .innovations li:before {
  color: white;
}

.history-image {
  text-align: center;
  margin-top: 60px;
}

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

/* Transform Section */
.transform-section {
  padding: 80px 0;
  background: white;
}

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

.transform-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.transform-text > p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
}

.stats h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.stats ul {
  list-style: none;
}

.stats li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #666;
}

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

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: white;
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-image {
  margin-top: 20px;
  height: 120px;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-content {
  padding: 30px 25px;
}

.benefit-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.benefit-content > p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.benefit-stats p {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.cta-center {
  text-align: center;
}

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

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

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

.testimonial-card.highlight {
  background: #9acd32;
  color: white;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote > p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.testimonial-card.highlight footer p {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Header Mobile */
  .burger-menu {
    display: flex;
  }

  .nav {
    display: none;
  }

  .logo h1 {
    font-size: 18px;
  }

  /* Cookie Popup Mobile */
  .cookie-content {
    padding: 30px 20px;
    margin: 15px;
  }

  .cookie-content h2 {
    font-size: 32px;
  }

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

  /* Hero Mobile */
  .hero {
    padding: 60px 0;
  }

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

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

  /* Services Mobile */
  .services {
    padding: 60px 0;
  }

  .services-header h2 {
    font-size: 32px;
  }

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

  /* Process Mobile */
  .process {
    padding: 60px 0;
  }

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

  /* Transformation Mobile */
  .transformation {
    padding: 60px 0;
  }

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

  .transformation-text h2 {
    font-size: 28px;
  }

  /* Target Audience Mobile */
  .target-audience {
    padding: 60px 0;
  }

  .target-audience h2 {
    font-size: 28px;
  }

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

  /* Contact Form Mobile */
  .contact-form {
    padding: 60px 0;
  }

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

  /* Footer Mobile */
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

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

  /* About Page Mobile */
  .history-section {
    padding: 60px 0;
  }

  .history-content h2 {
    font-size: 32px;
  }

  .history-content > p {
    font-size: 14px;
  }

  .milestones,
  .innovations {
    margin: 40px 0;
  }

  .history-image {
    margin-top: 40px;
  }

  /* Transform Section Mobile */
  .transform-section {
    padding: 60px 0;
  }

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

  .transform-text h2 {
    font-size: 28px;
  }

  /* Benefits Section Mobile */
  .benefits-section {
    padding: 60px 0;
  }

  .benefits-section h2 {
    font-size: 28px;
  }

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

  /* Testimonials Section Mobile */
  .testimonials-section {
    padding: 60px 0;
  }

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

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-card blockquote > p {
    font-size: 16px;
  }
}

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

  .services-header h2 {
    font-size: 28px;
  }

  .target-audience h2 {
    font-size: 24px;
  }

  .transformation-text h2 {
    font-size: 24px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  /* About Page Small Mobile */
  .history-content h2 {
    font-size: 28px;
  }

  .transform-text h2 {
    font-size: 24px;
  }

  .benefits-section h2 {
    font-size: 24px;
  }

  .testimonial-card blockquote > p {
    font-size: 14px;
  }
}
