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

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

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

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

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #333;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.nav-link:hover {
  color: #7b2cbf;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    #ff6b35 0%,
    #f7931e 25%,
    #c77dff 75%,
    #7b2cbf 100%
  );
  padding: 120px 0 80px;
  color: white;
}

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

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: #7b2cbf;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.cta-button:hover {
  background: #5a1a8b;
  transform: translateY(-2px);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.services h2 {
  font-size: 36px;
  font-weight: 800;
  color: #7b2cbf;
  text-align: center;
  margin-bottom: 60px;
}

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

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #7b2cbf;
  padding: 24px 24px 16px;
}

.service-card ul {
  padding: 0 24px 24px;
  list-style: none;
}

.service-card li {
  padding: 6px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  content: "•";
  color: #7b2cbf;
  position: absolute;
  left: 0;
}

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

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

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about h2 {
  font-size: 36px;
  font-weight: 800;
  color: #7b2cbf;
  margin-bottom: 24px;
}

.about-text p {
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.philosophy {
  background: #7b2cbf;
  color: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.philosophy h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.philosophy p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

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

.testimonials h2 {
  font-size: 36px;
  font-weight: 800;
  color: #7b2cbf;
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #7b2cbf;
  margin-bottom: 8px;
}

.testimonial-card p {
  color: #666;
  font-size: 14px;
}

.testimonial-image {
  text-align: center;
}

.testimonial-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  background: linear-gradient(
    135deg,
    #ff6b35 0%,
    #f7931e 25%,
    #c77dff 75%,
    #7b2cbf 100%
  );
  padding: 80px 0;
  color: white;
}

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

.contact-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-info p {
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-details p {
  margin-bottom: 8px;
  font-size: 14px;
}

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

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  font-family: inherit;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.form-button {
  background: #7b2cbf;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.form-button:hover {
  background: #5a1a8b;
}

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

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

.footer-brand .logo {
  color: white;
}

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

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

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.footer-bottom p {
  color: #ccc;
  font-size: 14px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
}

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

.cookie-content {
  padding: 24px;
}

.cookie-icon {
  font-size: 32px;
  text-align: center;
  margin-bottom: 16px;
}

.cookie-content h3 {
  color: #7b2cbf;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

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

.btn-accept {
  background: #7b2cbf;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-accept:hover {
  background: #5a1a8b;
}

.btn-refuse {
  background: transparent;
  color: #7b2cbf;
  border: 2px solid #7b2cbf;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-refuse:hover {
  background: #7b2cbf;
  color: white;
}

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

  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    left: 0;
  }

  .nav-link {
    padding: 15px;
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: center;
  }

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

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

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

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

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

  .services,
  .about,
  .testimonials,
  .contact {
    padding: 60px 0;
  }

  .services h2,
  .about h2,
  .testimonials h2,
  .contact h2 {
    font-size: 28px;
  }

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

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

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

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

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

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

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

  .hero-text p {
    font-size: 14px;
  }

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

  .service-card h3 {
    font-size: 18px;
  }

  .about h2,
  .services h2,
  .testimonials h2,
  .contact h2 {
    font-size: 24px;
  }
}
