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

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: "Poppins", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #1a1a1a;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2a2a;
  z-index: 1000;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #cccccc;
}

.cookie-accept {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  transform: translateY(-2px);
}

/* Header */
.header {
  background: #2a2a2a;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

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

.logo a {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #a855f7;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

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

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

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

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

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

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: #1a1a1a;
}

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

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

.hero-description {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

/* Why Us Section */
.why-us {
  padding: 80px 0;
  background: #1a1a1a;
}

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

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

.why-us-card {
  text-align: center;
  padding: 40px 20px;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

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

.why-us-card p {
  color: #cccccc;
  line-height: 1.6;
}

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

.services h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

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

.service-card {
  background: #3a3a3a;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

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

.service-card p {
  color: #cccccc;
  line-height: 1.6;
}

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

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

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

.about p {
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

/* References Section */
.references {
  padding: 80px 0;
  background: #2a2a2a;
}

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

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

.reference-card {
  background: #3a3a3a;
  padding: 40px;
  border-radius: 10px;
}

.reference-card p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.reference-author {
  color: #cccccc;
  font-style: italic;
}

/* Contact Form */
.contact-form {
  padding: 80px 0;
  background: #1a1a1a;
}

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

.form input {
  padding: 15px;
  border: 1px solid #444;
  border-radius: 5px;
  background: #2a2a2a;
  color: #ffffff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.form input::placeholder {
  color: #888;
}

.form input:focus {
  outline: none;
  border-color: #a855f7;
}

.form button {
  padding: 15px;
  font-size: 16px;
  align-self: center;
  margin-top: 20px;
}

/* Footer */
.footer {
  background: #2a2a2a;
  padding: 60px 0 30px;
}

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

.company-info p {
  color: #cccccc;
  margin-bottom: 5px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #444;
}

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

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copyright p {
  color: #888;
}

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

  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #2a2a2a;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
    gap: 40px;
  }

  .nav.active {
    left: 0;
  }

  .header .btn-primary {
    display: none;
  }

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

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

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

  .about-content .about-image {
    order: -1;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .cookie-content {
    text-align: center;
  }

  .cookie-accept {
    align-self: center;
  }
}

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

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

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

  .why-us h2,
  .services h2,
  .about h2,
  .references h2 {
    font-size: 28px;
  }

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

  .reference-card {
    min-width: unset;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

.reference-img {
  width: 84px;
  height: 84px;

  object-fit: contain;

  margin-bottom: 20px;
}