*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#20324a;
  line-height:1.6;
}

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

a{
  text-decoration:none;
}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  background:#ffffff;
  border-bottom:1px solid #e6ebf0;
  z-index:1000;
}

.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:64px;
  height:64px;
  object-fit:contain;
  background:#f4f4f4;
  border-radius:14px;
  padding:4px;
}

.brand-text h1{
  margin:0;
  font-size:20px;
  color:#223958;
}

.brand-text p{
  margin:2px 0 0;
  color:#5b6b7c;
}

.menu{
  display:flex;
  gap:22px;
}

.menu a{
  color:#223958;
  font-weight:700;
}

.menu-toggle{
  display:none;
  border:none;
  background:#ffffff;
  color:#223958;
  font-size:28px;
  cursor:pointer;
}

.hero{
  padding:70px 0 50px;
  background:linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:30px;
  align-items:center;
}

.badge,
.section-title span,
.text-box span,
.location-box span,
.schedule-box span,
.cta span{
  display:inline-block;
  padding:8px 14px;
  background:#fff1f1;
  color:#ff5757;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
}

.hero-text h2{
  font-size:56px;
  margin:16px 0 12px;
  line-height:1;
  color:#223958;
}

.hero-text p{
  color:#5b6b7c;
  font-size:18px;
  margin:0 0 24px;
}

.hero-data{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  margin-bottom:24px;
}

.card,
.info-card,
.text-box,
.highlight-box,
.location-box,
.schedule-box{
  background:#ffffff;
  border:1px solid #e6ebf0;
  border-radius:24px;
  box-shadow:0 12px 30px rgba(26, 42, 66, 0.08);
}

.card{
  padding:20px;
}

.card h3,
.info-card h3{
  margin:0 0 8px;
  color:#223958;
}

.card p,
.info-card p{
  margin:0;
  color:#5b6b7c;
}

.buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  border-radius:999px;
  font-weight:700;
}

.btn.primary{
  background:#ff5757;
  color:#ffffff;
}

.btn.secondary{
  background:#223958;
  color:#ffffff;
}

.hero-logo-box{
  background:#ffffff;
  border:1px solid #e6ebf0;
  border-radius:34px;
  box-shadow:0 16px 36px rgba(26, 42, 66, 0.10);
  padding:28px;
}

.hero-logo-box img{
  width:100%;
  max-width:420px;
  margin:0 auto;
  object-fit:contain;
}

.section{
  padding:70px 0;
}

.section.light{
  background:#f9fbfd;
}

.section-title{
  text-align:center;
  margin-bottom:30px;
}

.section-title h2{
  margin:16px 0 0;
  font-size:40px;
  color:#223958;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.info-card{
  padding:24px;
}

.two-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:stretch;
}

.text-box,
.location-box,
.schedule-box{
  padding:28px;
}

.text-box h2,
.location-box h2,
.schedule-box h2,
.cta h2{
  margin:16px 0 12px;
  font-size:38px;
  color:#223958;
}

.text-box p,
.location-box p,
.cta p{
  margin:0;
  color:#5b6b7c;
  font-size:17px;
}

.highlight-box{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
}

.highlight-box img{
  max-width:360px;
  object-fit:contain;
}

.cta-section{
  background:#223958;
}

.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#ffffff;
  background:transparent;
}

.cta h2{
  color:#ffffff;
}

.cta p{
  color:#eef2f6;
  margin:4px 0;
}

.footer{
  background:#ffffff;
  border-top:1px solid #e6ebf0;
  padding:28px 0 36px;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-brand img{
  width:70px;
  height:70px;
  object-fit:contain;
  background:#f4f4f4;
  border-radius:16px;
  padding:4px;
}

.footer-brand h3{
  margin:0;
  color:#223958;
}

.footer-brand p,
.footer-info p{
  margin:4px 0;
  color:#5b6b7c;
}

.floating-btn{
  position:fixed;
  right:18px;
  bottom:18px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#ff5757;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 12px 30px rgba(255, 87, 87, 0.35);
}

@media (max-width: 900px){
  .hero-grid,
  .info-grid,
  .two-columns,
  .hero-data,
  .cta,
  .footer-grid{
    grid-template-columns:1fr;
    flex-direction:column;
    align-items:flex-start;
  }

  .menu-toggle{
    display:block;
  }

  .menu{
    display:none;
    position:absolute;
    top:84px;
    left:0;
    right:0;
    background:#ffffff;
    border-bottom:1px solid #e6ebf0;
    padding:16px;
    flex-direction:column;
  }

  .menu.show{
    display:flex;
  }

  .hero-text h2{
    font-size:42px;
  }

  .section-title h2,
  .text-box h2,
  .location-box h2,
  .schedule-box h2,
  .cta h2{
    font-size:30px;
  }
}
