.policy,
.success {
  padding-block: 100px 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: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
  color: #000000;
}

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

.policy__title {
  color: #000000;
}

.policy__text h2 {
  text-align: left;

  font-size: 21px;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: #1a4d5e;
  line-height: 1.6;
  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.show {
  display: block;
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 10001;
}

.cookie-content {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 90%;
  z-index: 10002;
}

.cookie-content h3 {
  color: #1a4d5e;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}

.cookie-content p {
  margin-bottom: 20px;
  color: #5a6c75;
  font-size: 15px;
}

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

.btn-accept,
.btn-decline {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background-color: #1a4d5e;
  color: white;
}

.btn-accept:hover {
  background-color: #0f3544;
}

.btn-decline {
  background-color: #e8eef1;
  color: #1a4d5e;
}

.btn-decline:hover {
  background-color: #d4dee3;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #1a4d5e;
}

.logo img {
  width: 30px;
  height: 30px;
}

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

.nav-menu a {
  color: #1a4d5e;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2d7a96;
}

.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-color: #1a4d5e;
  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 {
  background-color: #f5f8fa;
  padding: 80px 0;
}

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

.hero-text h1 {
  font-size: 42px;
  color: #1a4d5e;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-text p {
  color: #5a6c75;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  background-color: #1a4d5e;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  background-color: #0f3544;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #1a4d5e;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item h2 {
  font-size: 36px;
  color: #1a4d5e;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item p {
  color: #5a6c75;
  font-size: 14px;
  line-height: 1.6;
}

/* Experience Section */
.experience {
  padding: 80px 0;
  background: white;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experience-image {
  border-radius: 8px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-text {
  background-color: #1a4d5e;
  color: white;
  padding: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-text h2 {
  font-size: 28px;
  margin-bottom: 25px;
  line-height: 1.3;
  font-weight: 700;
}

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

.experience-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.95;
}

.experience-text .btn-secondary {
  align-self: flex-start;
  background-color: white;
  color: #1a4d5e;
}

.experience-text .btn-secondary:hover {
  background-color: #e8eef1;
}

.experience-image.reception {
  grid-column: span 2;
}

.experience-image.reception img {
  height: 100%;
}

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

.about h2 {
  font-size: 38px;
  color: #1a4d5e;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-content {
  margin-bottom: 40px;
}

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

.about-subtitle {
  font-size: 28px;
  color: #1a4d5e;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.4;
}

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

.services h2 {
  font-size: 38px;
  color: #1a4d5e;
  margin-bottom: 50px;
  font-weight: 700;
}

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

.service-card {
  background-color: #1a4d5e;
  color: white;
  padding: 40px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

.service-card.large {
  grid-column: span 1;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Contact Section */
.contact {
  padding: 0;
  background: white;
}

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

.contact-image {
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-wrapper {
  background-color: #1a4d5e;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrapper h2 {
  color: white;
  font-size: 38px;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.contact-form input {
  padding: 18px 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
  padding: 18px 35px;
  background-color: white;
  color: #1a4d5e;
  border: none;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #e8eef1;
  transform: translateY(-2px);
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(26, 77, 94, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #1a4d5e;
}

.footer-logo img {
  width: 30px;
  height: 30px;
}

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

.footer-links a {
  color: #5a6c75;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.footer-bottom p {
  color: #5a6c75;
  font-size: 14px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #1a4d5e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #0f3544;
  transform: translateY(-3px);
}



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

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

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-text {
    grid-column: span 2;
  }

  .experience-image.reception {
    grid-column: span 2;
  }

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

  .service-card.large {
    grid-column: span 1;
  }

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

  .contact-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 40px;
    gap: 25px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

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

  .burger-menu {
    display: flex;
  }

  .hero {
    padding: 60px 0;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .experience {
    padding: 60px 0;
  }

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

  .experience-image.reception {
    grid-column: span 1;
  }

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

  .about h2,
  .services h2 {
    font-size: 32px;
  }

  .about-subtitle {
    font-size: 24px;
  }

  .contact-form-wrapper {
    padding: 60px 30px;
  }

  .contact-form-wrapper h2 {
    font-size: 32px;
  }

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

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

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

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

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

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

  .stat-item h2 {
    font-size: 30px;
  }

  .about h2,
  .services h2,
  .contact-form-wrapper h2 {
    font-size: 28px;
  }

  .about-subtitle {
    font-size: 20px;
  }

  .experience-text h2 {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .contact-form-wrapper {
    padding: 40px 20px;
  }
}
