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

.success__text {
  margin-bottom: 28px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 37px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 28px;
}

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

.policy__text h2,
.policy__text p,
.policy__text ul {
  text-align: left;
  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;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

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

.cookie-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  text-align: center;
  border: 3px solid #e6b800;
  position: relative;
}

.cookie-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cookie-content h3 {
  color: #2d2b3e;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cookie-content p {
  color: #2d2b3e;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

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

.btn-accept {
  background: #e6b800;
  color: #2d2b3e;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reject {
  background: transparent;
  color: #2d2b3e;
  border: 2px solid #2d2b3e;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept:hover {
  background: #d4a500;
}

.btn-reject:hover {
  background: #2d2b3e;
  color: white;
}

/* Header */
.header {
  background: #2d2b3e;
  color: white;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo h2 {
  color: #e6b800;
  font-size: 24px;
  font-weight: 700;
}

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

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

.nav a:hover {
  color: #e6b800;
}

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

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

.header-links a:hover {
  color: #e6b800;
}

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #2d2b3e;
  padding: 20px;
  gap: 15px;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #444;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.mobile-links a {
  color: #ccc;
  font-size: 14px;
  border: none;
}

/* Buttons */
.btn-primary {
  background: #e6b800;
  color: #2d2b3e;
  border: 1px solid #2d2b3e !important;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

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

.btn-primary.center {
  display: block;
  text-align: center;
  max-width: 300px;
  margin: 40px auto 0;
}

/* Hero Section */
.hero {
  background: #e6b800;
  color: #2d2b3e;
  padding: 120px 0 80px;
}

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

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

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

.hero-text .btn-primary {
  margin-top: 30px;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
}

/* Purpose Section */
.purpose {
  background: #2d2b3e;
  color: white;
  padding: 80px 0;
}

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

.purpose h2 {
  color: #e6b800;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.purpose-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.key-advantages {
  margin: 40px 0;
}

.key-advantages h3 {
  color: #e6b800;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.advantage-item {
  margin-bottom: 30px;
}

.advantage-item h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

.purpose-illustration {
  border-radius: 20px;
  overflow: hidden;
}

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

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

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

.service-card {
  background: #3d3b4e;
  padding: 40px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

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

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

.service-img {
  width: 100%;
  height: auto;
}

.service-card h3 {
  color: #e6b800;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

/* Principles Section */
.principles {
  background: #2d2b3e;
  color: white;
  padding: 80px 0;
}

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

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.principle-card {
  background: #3d3b4e;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.principle-number {
  width: 50px;
  height: 50px;
  background: #e6b800;
  color: #2d2b3e;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

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

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

/* Blog Section */
.blog {
  background: #2d2b3e;
  color: white;
  padding: 80px 0;
}

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

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

.blog-card {
  background: #3d3b4e;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h3 {
  color: #e6b800;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 20px 10px;
  line-height: 1.3;
}

.blog-card p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  padding: 0 20px 20px;
}

/* Contact Section */
.contact {
  background: #e6b800;
  color: #2d2b3e;
  padding: 80px 0;
}

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

.contact-image {
  border-radius: 20px;
  overflow: hidden;
}

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

.contact-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-details {
  background: #2d2b3e;
  color: white;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
}

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

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

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #2d2b3e;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4a500;
}

.contact-form button {
  background: #2d2b3e;
  color: white;
  align-self: flex-start;
}

.contact-form button:hover {
  background: #1d1b2e;
}

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

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

.footer-brand h3 {
  color: #e6b800;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

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

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

.footer-contact p {
  font-size: 14px;
  margin-bottom: 5px;
}

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

.footer-bottom p {
  font-size: 12px;
  opacity: 0.7;
}

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

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

  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

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

  .burger-menu {
    display: flex;
  }

  .mobile-nav.active {
    display: flex;
  }

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

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

  .purpose,
  .services,
  .principles,
  .blog,
  .contact {
    padding: 60px 0;
  }

  .purpose h2,
  .services h2,
  .principles h2,
  .blog h2,
  .contact h2 {
    font-size: 28px;
  }

  .principles-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .cookie-content h3 {
    font-size: 20px;
  }

  .cookie-content p {
    font-size: 13px;
  }
}

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

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

  .service-card,
  .principle-card {
    padding: 25px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px;
  }
}
