@import url(https://fonts.googleapis.com/css?family=Teko:300,regular,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Akshar:300,regular,500,600,700);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Akshar", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(45deg, #dad2fa -0.09%, #e7fff5 99.91%);
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  text-decoration: none;
  display: block;
  color: #6d60a1;
  text-align: center;
  font-family: Teko;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 5.12px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #667eea;
}

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

.burger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-image: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-content {
  color: white;
  text-align: left;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
a {
  text-decoration: none;
}
.hero .btn-primary {
  display: block;
  width: fit-content;
  padding: 20px 40px;
  display: block;
  color: #fff;
  text-align: center;

  font-family: Akshar;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  border-radius: 40px;
  background: radial-gradient(
    286.37% 67% at 4.6% 40.8%,
    #ebe3fd 0%,
    #6d60a1 100%
  );
  box-shadow: 0px -3px 3px 0px #a99ae5 inset;
}

.hero .btn-secondary {
  display: block;
  width: fit-content;
  color: #6d60a1;
  text-align: center;
  font-family: Akshar;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  padding: 20px 40px;
  border-radius: 40px;
  background: radial-gradient(286.37% 67% at 4.6% 40.8%, #ebe3fd 0%, #fff 100%);
  box-shadow: 0px -3px 3px 0px #a99ae5 inset;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
}

/* Advantages Section */
.advantages {
  padding: 100px 2rem;
  background: linear-gradient(to bottom, #f8f9ff, #e8f2ff);
}

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

.section-title {
  color: #0b152a;
  font-family: Akshar;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 126%; /* 60.48px */
  letter-spacing: -0.96px;
  margin-bottom: 40px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.advantage-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-radius: 24px;
  background: linear-gradient(45deg, #6d60a1 -0.09%, #8a96eb 99.91%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.advantage-icon {
  width: 56px;
  height: 56px;
}

.advantage-card h3 {
  color: #fff;
  font-family: Akshar;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.advantage-card p {
  color: #fff;
  font-family: Akshar;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 28px */
  letter-spacing: -0.4px;
}

/* Gallery Section */
.gallery {
  padding: 100px 2rem;
  background: #f8f9ff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.gallery-item img {
  object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
}

/* FAQ Section */
.faq {
  padding: 100px 2rem;
  background: linear-gradient(to bottom, #e8f2ff, #f8f9ff);
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(45deg, #6d60a1 -0.09%, #8a96eb 99.91%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-question:hover {
  background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

.faq-answer {
  padding: 1.5rem;
  color: #666;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* About Section */
.about {
  padding: 100px 2rem;

  color: #0b152a;
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
  padding: 100px 2rem;
}
.inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-content {
  max-width: 600px;
  margin: 3rem auto 0;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}
form button {
  display: block;
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(45deg, #6d60a1 -0.09%, #8a96eb 99.91%);
  color: #fff;
  text-align: center;
  font-family: Akshar;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  box-shadow: 0px -3px 3px 0px #a99ae5 inset;
}
.contact-info {
  margin-top: 2rem;
  text-align: center;
}

.contact-item {
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contact__bottom {
  border-radius: 32px;
  background: #ecefff;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.break {
  word-break: break-all;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: var(--Other-Gap-9, 16px);
}
.contact__img {
  max-width: 104px;
  width: 100%;
  flex-shrink: 0;
}
.contact__img img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.contact__label {
  color: #2e008b;
  font-family: Akshar;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
/* Footer */
.footer {
  background: #3a4168;
  padding-block: 40px;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.footer-content h3 {
  color: #fff;
  font-family: Akshar;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 126%; /* 60.48px */
  letter-spacing: -0.96px;
}
.footer__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer__img {
  width: 70px;
  height: 70px;
}
.footer__text {
  color: #fff;
  font-family: Akshar;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 19.6px */
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #bbb;
}
.footer-links a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer__cp {
  color: #b8b8b8;
  font-family: Akshar;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}

/* Mobile Styles */
@media (max-width: 768px) {
  .inner,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex-grow: 1;
}
.terms {
  padding-block: 150px 80px;
}
.terms h1 {
  color: #000;
  text-align: center;
  font-family: Akshar;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.terms p {
  color: #000;
  font-family: Akshar;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
:root {
  scroll-behavior: smooth;
}
@media (max-width: 480px) {
  .terms h1 {
    font-size: 42px;
  }
  .contact__item {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    padding: 1rem;
  }

  .hero {
    padding: 100px 1rem 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .advantages,
  .gallery,
  .faq,
  .about,
  .contact {
    padding: 60px 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
