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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #ffffff;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff8c42 !important;
  text-decoration: none;
}

.header-main {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #ff8c42;
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image-container {
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.9), rgba(255, 107, 53, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section-white {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-light {
  padding: 80px 0;
  background-color: #fafafa;
}

.section-accent {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.2rem;
  color: #666;
}

.info-card,
.topic-card,
.approach-card,
.benefit-card,
.includes-card,
.format-card,
.value-card,
.expect-card,
.variety-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover,
.topic-card:hover,
.approach-card:hover,
.benefit-card:hover,
.includes-card:hover,
.format-card:hover,
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.15);
}

.info-card h3,
.topic-card h4,
.approach-card h4,
.benefit-card h4,
.includes-card h4,
.format-card h4,
.value-card h4 {
  color: #ff8c42;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff8c42;
  font-weight: bold;
  font-size: 1.2rem;
}

.process-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.process-number {
  width: 60px;
  height: 60px;
  background: #ff8c42;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.disclaimer-box,
.info-disclaimer {
  background: #fff9f5;
  border-left: 4px solid #ff8c42;
  padding: 2rem;
  border-radius: 5px;
  margin-top: 2rem;
}

.disclaimer-box h5,
.info-disclaimer h5 {
  color: #ff8c42;
  margin-bottom: 1rem;
  font-weight: 600;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: #ff8c42;
}

.faq-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h5 {
  color: #ff8c42;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.btn-primary {
  background-color: #ff8c42;
  border-color: #ff8c42;
  padding: 12px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #ff6b35;
  border-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.btn-outline-primary {
  color: #ff8c42;
  border-color: #ff8c42;
  padding: 12px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background-color: #ff8c42;
  border-color: #ff8c42;
  color: #ffffff;
}

.footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer h5 {
  color: #ff8c42;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff8c42;
}

.footer-divider {
  border-top: 1px solid #444;
  margin: 2rem 0 1.5rem;
}

.footer-copyright {
  margin: 0;
  color: #999;
}

.footer a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ff8c42;
}

.page-header {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  padding: 100px 0 80px;
  color: #ffffff;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header .lead {
  color: #ffffff;
  font-size: 1.3rem;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h5 {
  color: #ff8c42;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  padding: 12px 15px;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.contact-form .form-control:focus {
  border-color: #ff8c42;
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.15);
}

.contact-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.thank-you-section {
  padding: 120px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-content h2 {
  color: #ff8c42;
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-content h3 {
  color: #333;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

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

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

.policy-content p {
  margin-bottom: 1rem;
}

.role-description {
  background: #fff9f5;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #ff8c42;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: #ffffff;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

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

.cookie-banner .btn-light {
  background-color: #ff8c42;
  border-color: #ff8c42;
  color: #ffffff;
  font-weight: 600;
}

.cookie-banner .btn-light:hover {
  background-color: #ff6b35;
  border-color: #ff6b35;
}

.cookie-banner .btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
  font-weight: 600;
}

.cookie-banner .btn-outline-light:hover {
  background-color: #ffffff;
  color: #333;
}

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .section-white,
  .section-light,
  .section-accent {
    padding: 50px 0;
  }
}
