@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #f9f9f9;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  background-color: #f5f7fa;
  padding: 18px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.main-header .logo {
  font-size: 24px;
  font-weight: 700;
}
.main-header .logo a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 0.3s ease;
}
.main-header .logo a:hover {
  color: #2f72ba;
}
.main-header .nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-header .nav-menu li a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}
.main-header .nav-menu li a:hover {
  color: #4a90e2;
}
.main-header .nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4a90e2;
  transition: width 0.3s;
}
.main-header .nav-menu li a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .main-header .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  .main-header .header-container {
    flex-direction: column;
    gap: 10px;
  }
}

.hero {
  background: linear-gradient(to bottom, #e6ecf2, #dfe5eb);
  text-align: center;
  padding: 100px 20px;
}
.hero .hero-content {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 40px;
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
  color: #222;
}
.hero .hero-content .hero-logo {
  width: 200px;
  margin-bottom: 20px;
}
.hero .hero-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero .hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.hero .hero-content .play-btn img {
  height: 50px;
  transition: transform 0.3s;
  border-radius: 8px;
}
.hero .hero-content .play-btn img:hover {
  transform: scale(1.05);
}

.benefits-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #eef3f9, #d8e2f0);
}
.benefits-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #34495e;
  position: relative;
}
.benefits-section .section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #4a90e2;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}
.benefits-section .benefits-carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 20px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.benefits-section .benefit-card {
  flex: 0 0 32%;
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #222;
  transition: all 0.4s ease;
  transform: translateY(0);
}
.benefits-section .benefit-card i {
  font-size: 36px;
  color: #4a90e2;
  margin-bottom: 20px;
  background: #eaf3fc;
  padding: 20px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.benefits-section .benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c3e50;
}
.benefits-section .benefit-card p {
  font-size: 15px;
  color: #555;
}
.benefits-section .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.benefits-section .benefit-card:hover i {
  transform: scale(1.1) rotate(3deg);
  background: #d2e9fd;
}
@media (max-width: 1024px) {
  .benefits-section .benefit-card {
    flex: 0 0 48%;
  }
}
@media (max-width: 600px) {
  .benefits-section .benefit-card {
    flex: 0 0 90%;
  }
}

.about-section {
  background: #f7f8fc;
  padding: 100px 0;
}
.about-section .about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.about-section .about-container .about-text {
  flex: 1 1 500px;
}
.about-section .about-container .about-text .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #34495e;
  position: relative;
}
.about-section .about-container .about-text .section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #4a90e2;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}
.about-section .about-container .about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #444;
}
.about-section .about-container .about-text p strong {
  color: #2c3e50;
}
.about-section .about-container .about-image {
  flex: 1 1 300px;
  text-align: center;
}
.about-section .about-container .about-image img {
  border-radius: 40px;
  max-width: 260px;
  height: auto;
  animation: float 4s ease-in-out infinite;
}
.about-section .features-title {
  text-align: center;
  margin: 60px 0 30px;
}
.about-section .features-title h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-section .features-grid .feature-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  transition: transform 0.3s ease;
}
.about-section .features-grid .feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.about-section .features-grid .feature-box {
  position: relative;
  padding-left: 50px;
}
.about-section .features-grid .feature-box i {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 20px;
  color: #4a90e2;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.howto-section {
  padding: 100px 0;
  background: #eef3f9;
}
.howto-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #34495e;
}
.howto-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #4a90e2;
  margin: 12px auto 0;
  border-radius: 2px;
}
.howto-section .howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.howto-section .howto-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  transition: all 0.35s ease;
  cursor: default;
}
.howto-section .howto-card .step-number {
  font-size: 26px;
  font-weight: 700;
  color: #4a90e2;
  background: #e3effc;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.howto-section .howto-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}
.howto-section .howto-card p {
  font-size: 15px;
  color: #555;
}
.howto-section .howto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #4a90e2;
}
.howto-section .howto-card:hover .step-number {
  background: #4a90e2;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.2);
}

.faq-section {
  padding: 100px 0;
  background: #f9fbfe;
}
.faq-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #34495e;
}
.faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.faq-section .faq-item .faq-question {
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  color: #2c3e50;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.faq-section .faq-item .faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  color: #4a90e2;
  transition: transform 0.3s ease;
}
.faq-section .faq-item .faq-question.active::after {
  content: "–";
  transform: rotate(180deg);
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 10px;
}
.faq-section .faq-item .faq-answer p {
  font-size: 15px;
  color: #555;
  margin-top: 10px;
}
.faq-section .faq-item .faq-question.active + .faq-answer {
  max-height: 200px;
}

.gallery-section {
  padding: 100px 0;
  background: #eef2f7;
}
.gallery-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #34495e;
}
.gallery-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #4a90e2;
  margin: 12px auto 0;
  border-radius: 2px;
}
.gallery-section .gallery-carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 20px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.gallery-section .gallery-item {
  flex: 0 0 33%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.gallery-section .gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}
.gallery-section .gallery-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .gallery-section .gallery-item {
    flex: 0 0 80%;
  }
}
@media (max-width: 600px) {
  .gallery-section .gallery-item {
    flex: 0 0 100%;
  }
}

.site-footer {
  background: #1c1e22;
  color: #bbb;
  padding: 40px 0;
  text-align: center;
}
.site-footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.site-footer .footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.site-footer .footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.site-footer p {
  font-size: 13px;
  margin: 0;
  color: #888;
}

.privacy-section {
  padding: 100px 20px;
  background: #ffffff;
  color: #333;
}
.privacy-section h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
}
.privacy-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #4a90e2;
}
.privacy-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.privacy-section ul {
  margin: 10px 0 20px 20px;
  list-style: disc;
}
.privacy-section ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

.terms-section {
  padding: 100px 20px;
  background: #ffffff;
  color: #333;
}
.terms-section h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
}
.terms-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #4a90e2;
}
.terms-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.terms-section ul {
  margin: 10px 0 20px 20px;
  list-style: disc;
}
.terms-section ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

.cookies-section {
  padding: 100px 20px;
  background: #ffffff;
  color: #333;
}
.cookies-section h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
}
.cookies-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #4a90e2;
}
.cookies-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.cookies-section ul {
  margin: 10px 0 20px 20px;
  list-style: disc;
}
.cookies-section ul li {
  margin-bottom: 8px;
  font-size: 15px;
}
.cookies-section ul li strong {
  font-weight: 600;
  color: #2c3e50;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background: #fff;
  color: #333;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(20px);
}
.cookie-banner.visible {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cookie-banner a {
  color: #4a90e2;
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner button {
  margin-top: 12px;
  background-color: #4a90e2;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-banner button:hover {
  background-color: #3a78c0;
}/*# sourceMappingURL=style.css.map */