* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
  padding-top: 80px;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A3C34;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
  text-decoration: none;
}

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-content {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #1A3C34;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
}

.section-standard {
  padding: 4rem 0;
  border-top: 1px solid #e8e8e8;
}

.section-title {
  font-size: 2rem;
  color: #1A3C34;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.section-content {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.section-content p {
  margin-bottom: 1.5rem;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 2px;
  margin: 0 auto;
  display: block;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 2px;
  transition: box-shadow 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(26, 60, 52, 0.08);
}

.info-card h3 {
  color: #1A3C34;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.info-card p {
  color: #666;
  margin-bottom: 0;
}

.disclaimer-box {
  background: #f9faf9;
  border-left: 3px solid #1A3C34;
  padding: 2rem;
  margin: 3rem 0;
}

.disclaimer-box h3 {
  color: #1A3C34;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: #555;
  margin-bottom: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.faq-item h4 {
  color: #1A3C34;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.faq-item p {
  color: #666;
  margin-bottom: 0;
}

.cta-section {
  background: #f4f6f5;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.cta-section h2 {
  color: #1A3C34;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.cta-section p {
  color: #666;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background: #1A3C34;
  color: #ffffff;
  border: none;
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  border-radius: 2px;
  transition: opacity 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.85;
  color: #ffffff;
  text-decoration: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #1A3C34;
}

.footer {
  background: #1A3C34;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h5 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer a {
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: block;
}

.footer a:hover {
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A3C34;
  color: #ffffff;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-text a {
  color: #ffffff;
  text-decoration: underline;
}

.btn-cookie {
  background: #ffffff;
  color: #1A3C34;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-weight: 500;
}

.btn-cookie:hover {
  opacity: 0.9;
}

.policy-content h1,
.policy-content h2 {
  color: #1A3C34;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h1 {
  font-size: 2rem;
  font-weight: 400;
}

.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
}

.policy-content p,
.policy-content ul {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.educational-notice {
  background: #fffef0;
  border: 1px solid #1A3C34;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  border-radius: 2px;
}

.educational-notice p {
  color: #1A3C34;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .content-with-image {
    grid-template-columns: 1fr 1fr;
  }
  
  .content-image-left {
    grid-template-columns: 400px 1fr;
  }
  
  .content-image-right {
    grid-template-columns: 1fr 400px;
  }
  
  .image-left {
    order: -1;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-cookie {
    width: 100%;
  }
}
