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

* {
  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;
  right: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-width: 400px;
  display: none;
}

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

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

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

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.cookie-btn.accept {
  background: #4caf50;
  color: white;
}

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

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
}

.logo img {
  width: 40px;
  height: 40px;
}

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

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

.nav-list a:hover {
  color: #4caf50;
}

@media (max-width: 768px) {
  .header-content .cta-button {
    display: none;
  }
}

.cta-button {
  background: #4caf50;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #45a049;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

/* About Section */
.about {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about-text p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #666;
}

.about-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #e8f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.feature-item p {
  color: #666;
  line-height: 1.5;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #4caf50;
  color: white;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.services p {
  font-size: 16px;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta {
  background: white;
  color: #4caf50;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  margin: 30px 0 50px;
  transition: transform 0.3s;
}

.services-cta:hover {
  transform: translateY(-2px);
}

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

.service-card {
  background: white;
  color: #333;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: #e8f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

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

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

.service-card p {
  color: #666;
  line-height: 1.5;
}

/* Team Section */
.team {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.team-header {
  margin-bottom: 50px;
}

.team-label {
  color: #4caf50;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 20px;
  color: #2c3e50;
}

.team p {
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-cta {
  background: #4caf50;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.team-cta:hover {
  background: #45a049;
}

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

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

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.team-member p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

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

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

.testimonials-label {
  color: #4caf50;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 20px;
  color: #2c3e50;
}

.testimonials-text p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonials-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

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

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

.testimonial-card p {
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.testimonial-author h4 {
  font-weight: 600;
  color: #2c3e50;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.testimonials-cta {
  background: #4caf50;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 40px;
  transition: background 0.3s;
}

.testimonials-cta:hover {
  background: #45a049;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #e8f5e8;
  text-align: center;
}

.faq-header {
  margin-bottom: 50px;
}

.faq-label {
  color: #4caf50;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
  color: #2c3e50;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: white;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-icon {
  font-size: 20px;
  color: #4caf50;
  font-weight: 300;
}

.faq-answer {
  padding: 0 20px;
  color: #666;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background: #4caf50;
  color: white;
  text-align: center;
}

.newsletter h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.newsletter p {
  font-size: 16px;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter-form input {
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  padding: 15px;
  background: #2c3e50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #34495e;
}

/* Footer */
.footer {
  background: #4caf50;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3,
.footer-info h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.social-links a:hover {
  color: #e8f5e8;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}

.footer-logo img {
  width: 30px;
  height: 30px;
}

.footer-newsletter {
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  color: #333;
  width: 250px;
}

.footer-newsletter button {
  padding: 10px 20px;
  background: #2c3e50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #34495e;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 14px;
}

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

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

.legal-links a:hover {
  color: #e8f5e8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

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

  .hero p {
    font-size: 16px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-newsletter {
    flex-direction: column;
    width: 100%;
  }

  .footer-newsletter input {
    width: 100%;
  }

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

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

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

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

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

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

  .about,
  .services,
  .team,
  .testimonials,
  .faq,
  .newsletter {
    padding: 60px 0;
  }

  .about-text h2,
  .services h2,
  .team h2,
  .testimonials-text h2,
  .faq h2,
  .newsletter h2 {
    font-size: 28px;
  }

  .newsletter-form {
    margin-top: 30px;
  }

  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
}
