/* Preland Header Styles */
.preland-header {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.preland-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preland-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1e3a5f;
  font-weight: 600;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
}

.preland-header .logo i {
  font-size: 24px;
  color: #3DA37A;
}

.preland-header .back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1e3a5f;
  font-weight: 500;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  padding: 8px 16px;
  border-radius: 6px;
  background: #f0f9ff;
  transition: background 0.2s;
}

.preland-header .back-link:hover {
  background: #e0f2fe;
}

/* Preland Main Content */
.preland-main {
  background: #f8fafc;
  min-height: calc(100vh - 200px);
}

/* Hero Section */
.preland-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
  padding: 60px 20px;
  text-align: center;
}

.preland-hero .container {
  max-width: 800px;
  margin: 0 auto;
}

.preland-headline {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.preland-video-note {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 30px;
  font-style: italic;
}

/* Video Container */
.video-container {
    min-width: 107%;
    height: 26rem;
    margin: 0 auto 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
  background-image: url('video.webp');
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 15px;
}

.video-placeholder i {
  font-size: 60px;
  opacity: 0.8;
}

.video-placeholder span {
  font-size: 14px;
  opacity: 0.6;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #3DA37A 0%, #2d8a65 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(61, 163, 122, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(61, 163, 122, 0.5);
  background: linear-gradient(135deg, #4ab88a 0%, #3DA37A 100%);
}

/* Content Section */
.preland-content {
  padding: 60px 20px;
}

.preland-content .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  text-align: left;
}

.content-box p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}

.content-box p:last-child {
  margin-bottom: 0;
}

.cta-bottom {
  margin-top: 20px;
}

/* Disclaimer Section */
.disclaimer-section {
  background: #f1f5f9;
  padding: 60px 20px;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #3DA37A;
}

.disclaimer-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e5e7eb;
}

.disclaimer-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 18px;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.disclaimer-content strong {
  color: #1e3a5f;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .preland-headline {
    font-size: 1.75rem;
  }
  
  .preland-hero {
    padding: 40px 15px;
  }
  
  .content-box {
    padding: 25px;
  }
  
  .content-box p {
    font-size: 1rem;
  }
  
  .disclaimer-box {
    padding: 25px;
  }
  
  .cta-button {
    font-size: 1.1rem;
    padding: 15px 35px;
  }
  
  .preland-header .logo span {
    display: none;
  }
  
  .preland-header .back-link span {
    display: none;
  }
}

@media (max-width: 480px) {
  .preland-headline {
    font-size: 1.5rem;
  }
  
  .video-placeholder i {
    font-size: 40px;
  }
}