*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

section p {
    text-align: left !important;
    max-width: 720px;
    margin: 1.5rem auto;
    line-height: 1.7;
    font-size: 1.15rem;
    color: #374151;
}

.center {
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.site-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.site-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.site-description {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #aaaaaa;
  letter-spacing: 0.5px;
}

.primary-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.02rem;
  padding: 4px 0;
}

.primary-menu a:hover {
  color: #248a3d;
}

@media (min-width: 768px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 30px;
    max-width: 1100px;
  }
  
  .site-branding {
    flex-direction: row;
    gap: 16px;
  }
  
  .site-logo {
    height: 64px;
  }
  
  .site-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .site-logo { height: 52px; }
  .site-description { font-size: 1rem; }
  .primary-menu ul { gap: 1.8rem; }
  .primary-menu a { font-size: 0.98rem; }
}

body {
    padding-top: 102px;
}

.video-wrapper {
  max-width: 100%;
  margin: 2.5rem auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.video-caption {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 35px 20px;
}

.content-section {
  padding: 1rem 0;
  text-align: center;
}

.bg-light {
  background: #dddddd;
}

.button {
  display: inline-block;
  background: #248a3d;
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.button:hover {
  background: #1a6b2d;
}

.site-footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 0 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .hero h2 { font-size: 2.3rem; }
  body { padding-top: 112px; }
}

@media (max-width: 480px) {
  .hero h2 { font-size: 2rem; }
  .hero p.lead { font-size: 1.05rem; }
}
