@charset "UTF-8";
body {
  font-family: "Poppins", Arial, sans-serif;
  margin: 0;
  background: #f6f8fa;
  color: #222;
}

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.site-header .header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  display: flex;
  align-items: center;
}
.site-header .logo img {
  max-height: 40px;
  display: block;
}
.site-header .burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
  margin-left: auto;
}
.site-header .burger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.site-header .burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.site-header .burger.active span:nth-child(2) {
  opacity: 0;
}
.site-header .burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}
.site-header .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.site-header .main-nav ul li a {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}
.site-header .main-nav ul li a:hover {
  color: #ffd700;
}

@media (max-width: 768px) {
  .site-header .header-inner {
    flex-wrap: wrap;
  }
  .site-header .burger {
    display: flex;
  }
  .site-header .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #101828;
    padding: 20px 16px;
    display: none;
    flex-direction: column;
    gap: 12px;
  }
  .site-header .main-nav ul {
    flex-direction: column;
    gap: 14px;
  }
  .site-header .main-nav ul li a {
    font-size: 1rem;
    color: #fff;
  }
  .site-header .main-nav.active {
    display: flex;
  }
}
.hero {
  position: relative;
  background: url("/assets/img/hero.png") center/cover no-repeat;
  padding: 70px 0 50px;
  color: #fff;
  text-align: left;
}
.hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero__inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  z-index: 2;
}
.hero__content .hero__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__content .hero__desc {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 28px;
  opacity: 0.95;
}
.hero__content .hero__badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__content .hero__badges .badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.hero__content .hero__badges .badge--age {
  font-weight: 700;
}
.hero__content .hero__badges .badge--responsible {
  font-style: italic;
}
.hero__visual {
  text-align: right;
}
.hero__visual img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .hero {
    padding: 110px 0 80px;
    text-align: center;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero__content .hero__title {
    font-size: 2.2rem;
  }
  .hero__content .hero__desc {
    font-size: 1rem;
    margin: 0 auto 24px;
  }
  .hero__content .hero__badges {
    justify-content: center;
  }
  .hero__visual {
    text-align: center;
  }
  .hero__visual img {
    max-width: 90%;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 90px 0 60px;
  }
  .hero__content .hero__title {
    font-size: 1.8rem;
  }
  .hero__content .hero__desc {
    font-size: 0.95rem;
  }
  .hero__content .hero__badges .badge {
    font-size: 0.85rem;
  }
  .hero__visual img {
    max-width: 100%;
  }
}
.casinos {
  background: #f5f7fa;
  padding: 10px 0;
}
.casinos .container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}
.casinos .section-intro {
  text-align: center;
  margin-bottom: 40px;
}
.casinos .section-intro .section-badge {
  display: inline-block;
  background: #dce3ff;
  color: #2338c4;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.casinos .section-intro h2 {
  font-size: 1.9rem;
  margin: 0 0 12px;
  font-weight: 700;
}
.casinos .section-intro p {
  color: #555;
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
.casinos .casino-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
}
.casinos .casino-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.casinos .casino-card .casino-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.casinos .casino-card .casino-header .casino-logo {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  background-color: #f1f1f1;
  padding: 4px;
}
.casinos .casino-card .casino-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}
.casinos .casino-card .bonus {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #2642d4;
}
.casinos .casino-card p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: #333;
}
.casinos .casino-card .casino-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.casinos .casino-card .casino-footer .casino-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: #444;
}
.casinos .casino-card .casino-footer .casino-btn {
  background: transparent;
  border: 2px solid #2642d4;
  color: #2642d4;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.casinos .casino-card .casino-footer .casino-btn:hover {
  background: #2642d4;
  color: #fff;
}
@media (max-width: 768px) {
  .casinos .casino-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .casinos .casino-footer .casino-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .casinos {
    padding: 60px 0;
  }
  .casinos .casino-card {
    padding: 22px;
  }
  .casinos .casino-card .casino-header {
    flex-direction: row;
    align-items: center;
  }
  .casinos .casino-card .casino-header .casino-logo {
    width: 56px;
    height: 56px;
  }
  .casinos .casino-card .casino-header h3 {
    font-size: 1.2rem;
  }
  .casinos .casino-card .bonus {
    font-size: 0.95rem;
  }
  .casinos .casino-card p {
    font-size: 0.9rem;
  }
  .casinos .casino-card .casino-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .casinos .casino-card .casino-footer .casino-stats {
    gap: 10px;
    font-size: 0.85rem;
  }
  .casinos .casino-card .casino-footer .casino-btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .casinos {
    padding: 50px 0;
  }
  .casinos .section-intro {
    display: none;
  }
  .casinos .section-intro .section-badge {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  .casinos .section-intro h2 {
    font-size: 1.5rem;
  }
  .casinos .section-intro p {
    font-size: 0.95rem;
  }
  .casinos .casino-card {
    padding: 18px;
  }
  .casinos .casino-card .casino-header {
    flex-direction: row;
  }
  .casinos .casino-card .casino-header .casino-logo {
    width: 50px;
    height: 50px;
  }
  .casinos .casino-card .casino-header h3 {
    font-size: 1.1rem;
  }
  .casinos .casino-card .bonus {
    font-size: 0.9rem;
  }
  .casinos .casino-card p {
    font-size: 0.85rem;
  }
  .casinos .casino-card .casino-footer {
    gap: 10px;
  }
  .casinos .casino-card .casino-footer .casino-stats {
    flex-direction: column;
    font-size: 0.85rem;
  }
  .casinos .casino-card .casino-footer .casino-btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}
@media (max-width: 480px) {
  .casinos {
    padding: 40px 0;
  }
  .casinos .casino-card {
    padding: 16px;
  }
  .casinos .casino-card .casino-header {
    gap: 12px;
  }
  .casinos .casino-card .casino-header .casino-logo {
    width: 44px;
    height: 44px;
  }
  .casinos .casino-card .casino-header h3 {
    font-size: 1rem;
  }
  .casinos .casino-card .bonus {
    font-size: 0.85rem;
  }
  .casinos .casino-card p {
    font-size: 0.8rem;
  }
  .casinos .casino-card .casino-footer .casino-btn {
    width: 90%;
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}
.features-highlight {
  background: url("/assets/img/hero.png") center/cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.features-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.features-highlight .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
.features-highlight .features-content {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.features-highlight .features-content .features-text-top {
  max-width: 60%;
}
.features-highlight .features-content .features-text-top .badge {
  background: #e5e9ff;
  color: #1c2fc4;
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 14px;
  margin-bottom: 10px;
}
.features-highlight .features-content .features-text-top h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.features-highlight .features-content .features-description {
  max-width: 35%;
  background: #ffffff;
  color: #333;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.features-highlight .features-list {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-highlight .features-list .feature-box {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.features-highlight .features-list .feature-box .number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-right: 16px;
}
.features-highlight .features-list .feature-box .feature-text h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #fff;
}
.features-highlight .features-list .feature-box .feature-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #e2e2e2;
}
.features-highlight .features-icon {
  grid-column: span 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features-highlight .features-icon img {
  max-width: 260px;
  height: auto;
  transform: translateY(10px);
}
@media (max-width: 992px) {
  .features-highlight .container {
    grid-template-columns: 1fr;
  }
  .features-highlight .features-content {
    flex-direction: column;
  }
  .features-highlight .features-content .features-text-top,
  .features-highlight .features-content .features-description {
    max-width: 100%;
  }
  .features-highlight .features-content .features-description {
    margin-top: 20px;
  }
  .features-highlight .features-icon {
    display: none;
  }
}

.games-block {
  background: #f5f7fa;
  padding: 80px 0;
}
.games-block__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 40px;
}
@media (max-width: 768px) {
  .games-block__inner {
    flex-direction: column;
    text-align: center;
  }
}
.games-block__image img {
  max-width: 180px;
  height: auto;
}
@media (max-width: 768px) {
  .games-block__image img {
    max-width: 140px;
  }
}
.games-block__text {
  flex: 1;
}
.games-block__text .badge {
  background: #e5e9ff;
  color: #1c2fc4;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 14px;
  margin-bottom: 10px;
}
.games-block__text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.games-block__text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.evaluation-section {
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  position: relative;
}
.evaluation-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.evaluation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.evaluation-section .evaluation-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.evaluation-section .evaluation-header .left {
  max-width: 55%;
}
.evaluation-section .evaluation-header .left .badge {
  background: #e5e9ff;
  color: #1c2fc4;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 14px;
  margin-bottom: 10px;
}
.evaluation-section .evaluation-header .left h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.evaluation-section .evaluation-header .right {
  max-width: 40%;
  background: #fff;
  color: #333;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .evaluation-section .evaluation-header {
    flex-direction: column;
  }
  .evaluation-section .evaluation-header .left,
  .evaluation-section .evaluation-header .right {
    max-width: 100%;
  }
  .evaluation-section .evaluation-header .right {
    margin-top: 20px;
  }
}
.evaluation-section .evaluation-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.evaluation-section .evaluation-list .evaluation-item {
  display: flex;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.evaluation-section .evaluation-list .evaluation-item .number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1d4ed8;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.evaluation-section .evaluation-list .evaluation-item .text h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
.evaluation-section .evaluation-list .evaluation-item .text p {
  margin: 0;
  font-size: 0.95rem;
  color: #e0e0e0;
}
.evaluation-section .evaluation-icon {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.evaluation-section .evaluation-icon img {
  max-width: 220px;
  height: auto;
}
@media (max-width: 768px) {
  .evaluation-section .evaluation-icon img {
    max-width: 140px;
  }
}

.cta-block {
  background: #f5f7fa;
  padding: 80px 0;
}
.cta-block .cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .cta-block .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}
.cta-block .cta-image img {
  max-width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  .cta-block .cta-image img {
    max-width: 140px;
  }
}
.cta-block .cta-text {
  flex: 1;
}
.cta-block .cta-text .badge {
  background: #e5e9ff;
  color: #1c2fc4;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.cta-block .cta-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.cta-block .cta-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}
.cta-block .cta-text .cta-btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.cta-block .cta-text .cta-btn:hover {
  background: #1e40af;
}

.testimonial-section {
  background: #ffffff;
  padding: 80px 0;
}
.testimonial-section .testimonial-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  .testimonial-section .testimonial-inner {
    flex-direction: column;
    text-align: center;
  }
}
.testimonial-section .testimonial-text {
  flex: 1;
}
.testimonial-section .testimonial-text .badge {
  background: #e5e9ff;
  color: #1c2fc4;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.testimonial-section .testimonial-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.testimonial-section .testimonial-text .support-btn {
  display: inline-block;
  border: 2px solid #1c2fc4;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  color: #1c2fc4;
  transition: 0.2s;
}
.testimonial-section .testimonial-text .support-btn:hover {
  background: #1c2fc4;
  color: #fff;
}
.testimonial-section .testimonial-quote {
  flex: 1;
  max-width: 450px;
}
.testimonial-section .testimonial-quote h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.testimonial-section .testimonial-quote .role {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}
.testimonial-section .testimonial-quote .stars {
  font-size: 1.2rem;
  color: #facc15;
  margin-bottom: 10px;
}
.testimonial-section .testimonial-quote p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.faq-section {
  background: #f9f9fb;
  padding: 80px 0;
}
.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}
.faq-section .faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-section .faq-header .badge {
  background: #e5e9ff;
  color: #1c2fc4;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.faq-section .faq-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}
.faq-section .faq-list .faq-item {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-list .faq-item .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.faq-section .faq-list .faq-item .faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #1c2fc4;
  transition: 0.3s;
}
.faq-section .faq-list .faq-item .faq-question.active::after {
  content: "−";
}
.faq-section .faq-list .faq-item .faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  color: #444;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-section .faq-list .faq-item .faq-answer.open {
  padding: 16px 24px 24px;
  max-height: 300px;
}

.site-footer {
  background: #101828;
  color: #e4e6eb;
  padding: 60px 0 30px;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.site-footer .footer-col {
  flex: 1;
  min-width: 220px;
}
.site-footer .footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}
.site-footer .footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b6c3;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 10px;
}
.site-footer .footer-col ul li a {
  color: #b0b6c3;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.site-footer .footer-col ul li a:hover {
  color: #ffffff;
}
.site-footer .footer-col .footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}
.site-footer .footer-col .phone {
  margin-top: 12px;
  font-weight: 600;
  color: #ffffff;
}
.site-footer .footer-col img {
  margin-top: 16px;
  width: 50px;
  height: auto;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}
.site-footer .footer-bottom p {
  font-size: 0.85rem;
  color: #999;
  margin: 6px 0;
}
.site-footer .footer-bottom p.disclaimer {
  font-size: 0.75rem;
  max-width: 900px;
  margin: 10px auto 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .site-footer .footer-col {
    max-width: 100%;
  }
  .site-footer .footer-col ul {
    padding: 0;
  }
  .site-footer .footer-logo {
    font-size: 1.6rem;
  }
}

.contact-section {
  background: #f9f9fb;
  padding: 80px 0;
  position: relative;
}
.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.contact-section .contact-left {
  flex: 1;
  min-width: 300px;
}
.contact-section .contact-left .badge {
  background: #e5e9ff;
  color: #1c2fc4;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.contact-section .contact-left h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-section .contact-left p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 24px;
}
.contact-section .contact-left form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-section .contact-left form .input-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-section .contact-left form .input-group input {
  flex: 1;
}
.contact-section .contact-left form input,
.contact-section .contact-left form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
}
.contact-section .contact-left form button {
  background: #1c2fc4;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}
.contact-section .contact-left form button:hover {
  background: #102186;
}
.contact-section .contact-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.contact-section .contact-right .contact-box {
  background: #eef1f8;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.contact-section .contact-right .contact-box i {
  font-size: 1.6rem;
  color: #1c2fc4;
  margin-bottom: 10px;
}
.contact-section .contact-right .contact-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1c2fc4;
}
.contact-section .contact-right .contact-box p {
  font-size: 0.95rem;
  color: #333;
}
.contact-section .thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 24, 40, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.contact-section .thank-you-popup .popup-content {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c2fc4;
}
@media (max-width: 768px) {
  .contact-section .container {
    flex-direction: column;
  }
}

.policy-section {
  padding: 80px 0;
  background: #ffffff;
}
.policy-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.policy-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c1c1c;
}
.policy-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #1c2fc4;
}
.policy-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
.policy-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.policy-section ul li {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

.terms-section {
  background: #ffffff;
  padding: 80px 0;
}
.terms-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.terms-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c1c1c;
}
.terms-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #1c2fc4;
}
.terms-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
.terms-section p a {
  color: #1c2fc4;
  text-decoration: underline;
}
.terms-section p a:hover {
  text-decoration: none;
}

.responsible-section {
  padding: 80px 0;
  background: #ffffff;
}
.responsible-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.responsible-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c1c1c;
}
.responsible-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #1c2fc4;
}
.responsible-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
.responsible-section p a {
  color: #1c2fc4;
  text-decoration: underline;
}
.responsible-section p a:hover {
  text-decoration: none;
}
.responsible-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.responsible-section ul li {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

.disclaimer-section {
  padding: 80px 0;
  background: #ffffff;
}
.disclaimer-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.disclaimer-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c1c1c;
}
.disclaimer-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #1c2fc4;
}
.disclaimer-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
.disclaimer-section p a {
  color: #1c2fc4;
  text-decoration: underline;
}
.disclaimer-section p a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */