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

@media (max-width: 768px) {
  .policy {
    padding-block: 100px 60px !important;
  }
}

.success__text {
  margin-bottom: 27px;
}

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

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

.success__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.policy__title {
  color: #000000;
}

.policy__text h2 {
  text-align: left;

  font-size: 21px;
}

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



.policy__text h2,
.policy__text p {
  text-align: left;
  color: #000000;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.cookie-popup.active {
  display: block;
}

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.cookie-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px 50px;
  border-radius: 20px;
  max-width: 540px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.cookie-content h3 {
  font-size: 32px;
  color: #5a9b94;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.btn-cookie {
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.btn-cookie.accept {
  background: #5a9b94;
  color: white;
}

.btn-cookie.accept:hover {
  background: #4a8b84;
}

.btn-cookie.read-more {
  background: #5a9b94;
  color: white;
  display: flex;
  align-items: center;
}

.btn-cookie.read-more:hover {
  background: #4a8b84;
}

/* Success Popup */
.success-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.success-popup.active {
  display: block;
}

.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.success-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #5a9b94;
  padding: 60px 80px;
  border-radius: 20px;
  max-width: 560px;
  width: 90%;
  text-align: center;
}

.success-content h2 {
  font-size: 28px;
  color: white;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 2px;
}

.success-content h3 {
  font-size: 36px;
  color: white;
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.3;
}

.btn-success {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background: white;
  color: #5a9b94;
}

/* Header */
.header {
  background: #5a9b94;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-menu a {
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.nav-menu a:hover {
  opacity: 0.8;
}

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

.burger-menu span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
  position: relative;
  background: url("../img/hero-back.png") center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.hero p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: #5a9b94;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid #5a9b94;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  border-color: white;
}

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

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

.about-content h2 {
  font-size: 36px;
  color: #5a9b94;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.about-image {

  overflow: hidden;
  
}

/* Solutions Section */
.solutions {
  padding: 100px 0;
  background: white;
}

.solutions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.solutions-image {

  overflow: hidden;

}

.solutions-intro h2 {
  font-size: 36px;
  color: #5a9b94;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.solutions-intro p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.solution-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-content {
  flex: 1;
}

.solution-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.solution-header h3 {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
}

.solution-number {
  font-size: 20px;
  color: #5a9b94;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 15px;
}

.solution-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: #f8f9fa;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  color: #5a9b94;
  margin-bottom: 25px;
  font-weight: 700;
}

.cta-intro {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-description {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #666;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: white;
}

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

.services-intro {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 60px;
  color: #555;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.service-card {
  text-align: center;
  padding: 40px 30px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 25px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #f8f9fa;
}

.contact h2 {
  font-size: 36px;
  color: #5a9b94;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact > p {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.contact-form input {
  padding: 18px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  transition: border-color 0.3s ease;
}

.contact-form input:focus {
  outline: none;
  border-color: #5a9b94;
}

.btn-submit {
  padding: 18px 30px;
  background: #5a9b94;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.btn-submit:hover {
  background: #4a8b84;
}

/* Footer */
.footer {
  background: #2d2d2d;
  color: white;
  padding: 50px 0 30px;
}

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

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

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

.footer-nav a {
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #5a9b94;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    gap: 30px;
    transition: left 0.3s ease;
  }

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

  .burger-menu {
    display: flex;
  }

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

  .about-grid,
  .solutions-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-content h2,
  .solutions-intro h2,
  .cta h2,
  .services h2,
  .contact h2 {
    font-size: 30px;
  }

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

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

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

  .hero p {
    font-size: 15px;
  }

  .about-content h2,
  .solutions-intro h2,
  .cta h2,
  .services h2,
  .contact h2 {
    font-size: 24px;
  }

  .cookie-content {
    padding: 30px 25px;
  }

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

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

  .success-content {
    padding: 40px 30px;
  }

  .success-content h3 {
    font-size: 28px;
  }

  .solution-card {
    flex-direction: column;
    text-align: center;
  }

  .solution-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .solution-number {
    margin-left: 0;
    margin-top: 10px;
  }

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