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

.success__text {
  margin-bottom: 27px;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #353535;
}

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

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

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

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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Exo", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-family: "Exo", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7c3aed, #db2777);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #333;
}

.btn-secondary:hover {
  background: #333;
  color: white;
}

/* Animations */
@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, -0px);
  }
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

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

.cookie-popup.hidden {
  opacity: 0;
  pointer-events: none;
}

.cookie-popup-content {
  background: white;
  max-width: 600px;
  margin: 20px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-popup-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.cookie-popup-content p {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #666;
}

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

.cookie-buttons .btn {
  flex: 1;
  text-align: center;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 24px;
  font-weight: 600;
}

.logo-text strong {
  color: #ec4899;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

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

.mobile-menu {
  position: fixed;
  top: 70px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 70px);
  background: white;
  transition: left 0.3s ease;
  z-index: 999;
  padding-top: 50px;
}

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

.mobile-nav-list {
  list-style: none;
  text-align: center;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fef7cd, #e5dcff);
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

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

.hero-text h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #333;
}

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

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

/* About Section */
.about {
  padding: 100px 0;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.about-description {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.engagement-formats {
  margin-bottom: 50px;
}

.engagement-formats h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

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

.format-item {
  margin-bottom: 15px;
  padding: 0 20px;
  font-size: 14px;
  color: #666;
}

/* Expertise Section */
.expertise {
  padding: 100px 0;
  background: #f8f9fa;
}

.expertise h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}

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

.expertise-item {
  padding: 30px;
  border-radius: 10px;
  color: white;
  transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-item.red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.expertise-item.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.expertise-item.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.expertise-item.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.expertise-item.orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.expertise-item.light-blue {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

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

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

.expertise .btn-primary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
}

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

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

.why-choose-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.feature {
  margin-bottom: 35px;
}

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

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

/* Engagements Section */
.engagements {
  padding: 100px 0;
  background: #4c1d95;
  color: white;
  text-align: center;
}

.engagements h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.step {
  text-align: left;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f3f4f6;
}

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

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

.testimonial {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  padding: 30px;
  border-radius: 15px;
  color: white;
}

.testimonial h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial .title {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.testimonial .quote {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.95;
}

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

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

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

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

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

.office p {
  line-height: 1.8;
  opacity: 0.9;
}

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

.office a:hover {
  text-decoration: underline;
}

.form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  color: #333;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  font-family: "Exo", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b5cf6;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

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

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

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

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

.footer-right a:hover {
  color: #ec4899;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .why-choose-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

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

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

  .about h2,
  .expertise h2,
  .why-choose-text h2,
  .engagements h2,
  .testimonials h2,
  .contact-form h2 {
    font-size: 28px;
  }

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

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

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

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

  .cookie-buttons .btn {
    flex: none;
  }

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

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

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

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

  .about h2,
  .expertise h2,
  .why-choose-text h2,
  .engagements h2,
  .testimonials h2,
  .contact-form h2 {
    font-size: 24px;
  }

  .cookie-popup-content {
    padding: 30px 20px;
    margin: 15px;
  }

  .form {
    padding: 25px;
  }

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

.contact-map {
  width: 100%;
  object-fit: contain;
}

/* FAQ Section */
.faq {
    background: #4C1D95;
    color: white;
    padding: 120px 0 100px;
    min-height: 100vh;
}

.faq h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.faq-item:last-child {
    margin-bottom: 0;
}
