@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Roboto:wght@400;500;700&display=swap");
* {
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

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

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input, textarea {
  font-family: inherit;
}

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

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: #f4f7fa;
  color: #0e1a2b;
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background-color: #1a3e72;
  color: #ffffff;
  padding: 1rem 0;
}
.header__logo {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
}
.header__logo:hover {
  color: #ffc107;
}
.header nav {
  margin-left: auto;
}
.header__menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.header__menu-item {
  display: inline-block;
}
.header__menu-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}
.header__menu-link:hover {
  color: #ffc107;
}
.header__btn {
  background-color: #ffc107;
  color: #1a3e72;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 2rem;
}
.header__btn:hover {
  background-color: #d39e00;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .header__menu {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  .header__btn {
    margin-left: 0;
    margin-top: 1rem;
  }
  .header .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero {
  background: url("/img/hero-bg.jpg") center center/cover no-repeat;
  padding: 6rem 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.hero .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}
.hero__label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  background-color: rgba(49, 169, 184, 0.8);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero__title {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.hero__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: white;
}
.hero__btn {
  background-color: #ffc107;
  color: #1a3e72;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.hero__btn:hover {
  background-color: #d39e00;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__description {
    font-size: 1rem;
  }
  .hero__btn {
    width: 100%;
    display: inline-block;
  }
}
.about {
  padding: 5rem 0;
  background-color: #ffffff;
  color: #0e1a2b;
}
.about__wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .about__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.about__img {
  width: 50%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.about__content {
  flex: 1 1 50%;
}
.about__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #31a9b8;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.about__title {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a3e72;
}
.about__description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #0e1a2b;
}
.about__btn {
  background-color: #ffc107;
  color: #1a3e72;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.about__btn:hover {
  background-color: #d39e00;
}

.services {
  padding: 5rem 0;
  background-color: #f4f7fa;
  color: #0e1a2b;
  text-align: center;
}
.services__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #31a9b8;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}
.services__title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: #1a3e72;
  margin-bottom: 3rem;
}
.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .services__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services__list {
    grid-template-columns: 1fr;
  }
}
.services__item {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.services__item-img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.5rem 1.5rem 0.5rem;
  color: #1a3e72;
}
.services__item-description {
  font-size: 1rem;
  color: #0e1a2b;
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
}
.services__item-btn {
  background-color: #ffc107;
  color: #1a3e72;
  padding: 0.75rem 1.5rem;
  margin: 1rem 1.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  align-self: center;
}
.services__item-btn:hover {
  background-color: #d39e00;
}
@media (max-width: 768px) {
  .services__item-btn {
    align-self: center;
  }
}

.how-it-works {
  background: url("/img/how-it-works-bg.jpg") center center/cover no-repeat;
  position: relative;
  color: #ffffff;
  padding: 5rem 0;
  z-index: 1;
}
.how-it-works::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 62, 114, 0.85);
  z-index: -1;
}
.how-it-works__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .how-it-works__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.how-it-works__content {
  flex: 1;
}
.how-it-works__content > *:not(:last-child) {
  margin-bottom: 1.2rem;
}
.how-it-works__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #31a9b8;
  text-transform: uppercase;
  display: inline-block;
}
.how-it-works__title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: #ffffff;
}
.how-it-works__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: white;
}
.how-it-works__steps {
  flex: 1;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .how-it-works__steps {
    align-items: center;
  }
}
.how-it-works__step {
  position: relative;
  padding-left: 2.2rem;
  font-size: 1.1rem;
  color: #ffffff;
}
.how-it-works__step::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: #ffc107;
  font-weight: bold;
}

.testimonials {
  background-color: #f4f7fa;
  padding: 5rem 2rem;
  text-align: center;
  color: #0e1a2b;
}
.testimonials__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #31a9b8;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.testimonials__title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: #1a3e72;
  margin-bottom: 3rem;
}
.testimonials__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .testimonials__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .testimonials__list {
    grid-template-columns: 1fr;
  }
}
.testimonials__item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonials__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.testimonials__quote {
  font-size: 1.125rem;
  font-style: italic;
  color: #0e1a2b;
  margin-bottom: 1rem;
  position: relative;
}
.testimonials__quote::before, .testimonials__quote::after {
  content: '"';
  color: #ffc107;
  font-size: 1.5rem;
}
.testimonials__author {
  font-weight: 700;
  color: #1a3e72;
  font-size: 1rem;
}

.cta {
  position: relative;
  background: url("/img/cta-bg.webp") center center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #ffffff;
  z-index: 1;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 62, 114, 0.85);
  z-index: -1;
}
.cta__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #31a9b8;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}
.cta__title {
  font-family: "Cinzel", serif;
  font-size: 2.75rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 2rem;
  }
}
.cta__description {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta__btn {
  background-color: #ffc107;
  color: #1a3e72;
  font-weight: bold;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cta__btn:hover {
  background-color: #d39e00;
}

.footer {
  background-color: #0e1a2b;
  color: #ffffff;
  padding: 3rem 2rem 2rem;
  font-size: 0.95rem;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__content {
  max-width: 400px;
}
.footer__content .footer__logo {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: #ffc107;
}
.footer__content .footer__description {
  margin-top: 0.5rem;
  color: white;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links .footer__link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__links .footer__link:hover {
  color: #31a9b8;
}
.footer__copy {
  text-align: center;
  color: white;
  font-size: 0.85rem;
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(14, 26, 43, 0.95);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: none;
  align-items: center;
  gap: 1rem;
  max-width: 480px;
  width: 90%;
  font-size: 0.95rem;
  z-index: 9999;
}
.cookie-banner__message {
  flex: 1;
}
.cookie-banner__btn {
  background-color: #ffc107;
  color: #1a3e72;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background-color: #d39e00;
  outline: none;
}
@media (max-width: 576px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__btn {
    width: 100%;
    padding: 0.75rem 0;
  }
}

.about-company {
  padding: 5rem 2rem;
  background-color: #f4f7fa;
  color: #0e1a2b;
  font-family: "Roboto", sans-serif;
}
.about-company__label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #31a9b8;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-company__title {
  font-family: "Cinzel", serif;
  font-size: 2.75rem;
  color: #1a3e72;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .about-company__title {
    font-size: 2rem;
  }
}
.about-company__wrapper {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .about-company__wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.about-company__description {
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #010305;
}
.about-company__img {
  flex: 1;
  max-width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .about-company__img {
    width: 100%;
    height: auto;
  }
}

.contact {
  padding: 5rem 2rem;
  background-color: #f4f7fa;
  color: #0e1a2b;
  font-family: "Roboto", sans-serif;
}
.contact__label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #31a9b8;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.contact__title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a3e72;
}
@media (max-width: 768px) {
  .contact__title {
    font-size: 2rem;
  }
}
.contact__wrapper {
  display: flex;
  gap: 4rem;
}
@media (max-width: 992px) {
  .contact__wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}
.contact__info {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact__info-item {
  margin-bottom: 1.75rem;
}
.contact__info-title {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffc107;
  font-size: 1.1rem;
}
.contact__info-text {
  font-size: 1rem;
  color: black;
  line-height: 1.5;
}
.contact__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__form-input, .contact__form-textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  border: 1.5px solid #6a93ce;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  resize: vertical;
  transition: border-color 0.3s ease;
}
.contact__form-input:focus, .contact__form-textarea:focus {
  border-color: #31a9b8;
  outline: none;
  box-shadow: 0 0 6px rgba(49, 169, 184, 0.5);
}
.contact__form-textarea {
  min-height: 140px;
}
.contact__form-btn {
  align-self: flex-start;
  background-color: #ffc107;
  color: #1a3e72;
  font-weight: 700;
  padding: 0.9rem 3rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact__form-btn:hover, .contact__form-btn:focus {
  background-color: #d39e00;
  outline: none;
}
.contact__form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #31a9b8;
  min-height: 1.2em;
}

.legal {
  padding: 4rem 2rem;
  background-color: #ffffff;
  color: #0e1a2b;
  font-family: "Roboto", sans-serif;
}
.legal__title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: #1a3e72;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .legal__title {
    font-size: 2rem;
  }
}
.legal__subtitle {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: #31a9b8;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .legal__subtitle {
    font-size: 1.3rem;
  }
}
.legal__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #010305;
}
.legal__list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: black;
  font-size: 1rem;
}
.legal__list li {
  margin-bottom: 0.6rem;
}
.legal__link {
  color: #ffc107;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal__link:hover, .legal__link:focus {
  color: #ba8b00;
  outline: none;
}
.legal .container {
  max-width: 1140px;
  margin: 0 auto;
}

.thank-you {
  padding: 6rem 2rem;
  background-color: #f4f7fa;
  color: #0e1a2b;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
.thank-you__content {
  max-width: 600px;
  margin: 0 auto;
}
.thank-you__title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: #1a3e72;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .thank-you__title {
    font-size: 2rem;
  }
}
.thank-you__text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: black;
}
.thank-you__btn {
  background-color: #ffc107;
  color: #0e1a2b;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.thank-you__btn:hover, .thank-you__btn:focus {
  background-color: #d39e00;
  color: #ffffff;
  outline: none;
}