/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #0B4EA2;
}

.nav__list {
  display: flex;
  gap: 30px;
}

.nav__link {
  font-weight: 500;
  transition: color 0.3s;
}

.nav__link:hover {
  color: #0B4EA2;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.burger__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0B4EA2;
  margin-bottom: 5px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger__line:last-child {
  margin-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background-color: #FF8000;
  color: white;
}

.btn--primary:hover {
  background-color: #E67300;
  transform: translateY(-2px);
}

.btn--secondary {
  background-color: #0B4EA2;
  color: white;
}

.btn--secondary:hover {
  background-color: #093d80;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background-color: #0B4EA2;
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(150px, -150px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-100px, 100px);
}

.hero__content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero__text {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Section Titles */
.section__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #0B4EA2;
  margin-bottom: 50px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service__card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.service__card:hover {
  transform: translateY(-5px);
}

.service__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.service__title {
  font-size: 20px;
  font-weight: 600;
  color: #0B4EA2;
  margin-bottom: 15px;
}

.service__description {
  font-size: 16px;
  color: #666;
}

/* About Us Section */
.about {
  padding: 80px 0;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about__text {
  font-size: 16px;
}

.about__text p {
  margin-bottom: 20px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__group--full {
  grid-column: span 2;
}

.form__group label {
  margin-bottom: 8px;
  font-weight: 500;
}

.form__group input,
.form__group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form .btn {
  grid-column: span 2;
  margin-top: 10px;
}

.contact__info {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact__info h3 {
  font-size: 24px;
  color: #0B4EA2;
  margin-bottom: 25px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact__item:last-child {
  margin-bottom: 0;
}

.contact__icon {
  margin-right: 15px;
  flex-shrink: 0;
  width: 24px;
}

.contact__details h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #0B4EA2;
}

.contact__details p {
  font-size: 16px;
  color: #666;
}

/* Footer */
.footer {
  background-color: #0B4EA2;
  color: white;
  padding: 25px 0;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a {
  text-decoration: underline;
  transition: opacity 0.3s;
}

.footer__links a:hover {
  opacity: 0.8;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px 0;
  z-index: 1000;
  display: none;
}

.cookie-consent.active {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
}

.cookie-content a {
  color: #FF8000;
  text-decoration: underline;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  padding: 100px 0;
}

.thank-you__title {
  font-size: 36px;
  color: #0B4EA2;
  margin-bottom: 20px;
}

.thank-you__text {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Media Queries */
@media (max-width: 992px) {
  .burger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 1000;
    padding: 80px 30px 30px;
  }

  .nav.active {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 20px;
  }

  .about__content,
  .contact__content {
    grid-template-columns: 1fr;
  }

  .about__image {
    order: -1;
  }

  .hero__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .contact__form {
    grid-template-columns: 1fr;
  }

  .form__group--full {
    grid-column: 1;
  }

  .contact__form .btn {
    grid-column: 1;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .section__title {
    font-size: 28px;
  }

  .hero__title {
    font-size: 32px;
  }

  .footer__content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__text {
    font-size: 16px;
  }

  .section__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .services,
  .about,
  .contact {
    padding: 60px 0;
  }

  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
}
              
              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                