.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: #ffffff;
  background-color: #1a1d29;
  overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-content {
  background: linear-gradient(135deg, #ffffff, #fafafa);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  color: #1a1d29;
  box-shadow: 0 20px 60px rgba(0, 255, 68, 0.3);
}

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

.cookie-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1d29;
}

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

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

.btn-accept {
  background-color: #1a1d29;
  color: #00ff44;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-refuse {
  background-color: transparent;
  color: #1a1d29;
  border: 2px solid #1a1d29;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-accept:hover {
  background-color: #0f1118;
  transform: translateY(-2px);
}

.btn-refuse:hover {
  background-color: #1a1d29;
  color: #00ff44;
  transform: translateY(-2px);
}

/* Header */
.header {
  background-color: #0f1118;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar {
  position: relative;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-brand a {
  font-size: 24px;
  font-weight: 700;
  color: #00ff44;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

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

.nav-link:hover {
  color: #00ff44;
}

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

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: 0.3s;
}

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

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #00ff44, #00cc36);
  padding: 120px 0 80px;
  margin-top: 70px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.hero-content {
  color: #1a1d29;
}

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

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #1a1d29;
  color: #00ff44;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #0f1118;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 68, 0.3);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: #1a1d29;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
}

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

.service-card {
  background-color: #0f1118;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: #00ff44;
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 255, 68, 0.1);
}

.service-title {
  color: #00ff44;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  color: #ffffff;
}

.service-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}

.service-list li:before {
  content: "•";
  color: #00ff44;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-image {
  margin-top: 20px;
}

.service-image img {
  width: 100%;
  border-radius: 15px;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: #0f1118;
}

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

.about-image img {
  width: 100%;
  border-radius: 20px;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 30px;
  font-size: 42px;
}

.about-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ffffff;
}

.advantages {
  margin-bottom: 40px;
}

.advantages-title {
  color: #00ff44;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

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

.advantage-item h4 {
  color: #00ff44;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.advantage-item p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

/* Blog Section */
.blog {
  padding: 100px 0;
  background-color: #1a1d29;
}

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

.blog-card {
  background-color: #0f1118;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: #00ff44;
  box-shadow: 0 20px 60px rgba(0, 255, 68, 0.1);
}

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

.blog-content {
  padding: 30px;
}

.blog-title {
  color: #00ff44;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-excerpt {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #00ff44, #00cc36);
}

.contact .section-title {
  color: #1a1d29;
}

.contact-description {
  text-align: center;
  font-size: 16px;
  color: #1a1d29;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  text-align: center;
  margin-bottom: 60px;
}

.contact-info p {
  color: #1a1d29;
  font-size: 16px;
  margin-bottom: 10px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  background-color: #ffffff;
  color: #1a1d29;
}

.form-group textarea {
  border-radius: 25px;
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 29, 41, 0.2);
}

.contact-chart img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background-color: #0f1118;
  padding: 60px 0 30px;
}

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

.footer-brand h3 {
  color: #00ff44;
  font-size: 24px;
  font-weight: 700;
}

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

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

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

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

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

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #0f1118;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 30px 0;
  }

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

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

  .nav-link {
    font-size: 16px;
    display: block;
    padding: 10px 0;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 36px;
  }

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

  .about-text .section-title {
    text-align: center;
  }

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

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

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

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

  .hero-description {
    font-size: 14px;
  }

  .services {
    padding: 80px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

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

  .service-card {
    padding: 30px;
  }

  .about {
    padding: 80px 0;
  }

  .blog {
    padding: 80px 0;
  }

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

  .contact {
    padding: 80px 0;
  }

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

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

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

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

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

  .btn-accept,
  .btn-refuse {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .service-card {
    padding: 20px;
  }

  .blog-content {
    padding: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 15px;
    font-size: 14px;
  }

  .btn-primary {
    padding: 15px 30px;
    font-size: 14px;
  }
}

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

/* Additional animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.blog-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.btn-primary:focus,
.nav-link:focus,
input:focus,
textarea:focus {
  outline: 2px solid #00ff44;
  outline-offset: 2px;
}
