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

body {
  font-family: 'Roboto', sans-serif;
  color: #1F2937;
  background-color: #F9FAFB;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 5.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #F59E0B;
}

h2 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #1E3A8A;
}

h3 {
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1E3A8A;
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

a {
  color: #F59E0B;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #34D399;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E3A8A;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  color: #1E3A8A;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #F59E0B;
}

/* Main Content */
main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6B7280 0%, #1E3A8A 100%);
  color: white;
  padding: 6rem 2rem;
  height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  color: #F59E0B;
  font-size: 5.2rem;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #E5E7EB;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

/* Sections */
section {
  padding: 4rem 0;
  border-bottom: 1px solid #E5E7EB;
}

section.full-bleed {
  background: linear-gradient(135deg, #F3F4F6 0%, #FFFFFF 100%);
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-grid img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.content-text h3 {
  margin-bottom: 1.5rem;
}

.content-text ul {
  list-style: none;
  padding: 0;
}

.content-text li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.content-text li:before {
  content: "▪";
  position: absolute;
  left: 0;
  color: #34D399;
  font-weight: bold;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border-top: 4px solid #F59E0B;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, border-top-color 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-top-color: #34D399;
}

.card h3 {
  margin-bottom: 1rem;
  color: #1E3A8A;
}

.card p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.6;
}

.card a {
  display: inline-block;
  margin-top: 1rem;
  color: #F59E0B;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #34D399;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: #F59E0B;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-top: 1.5rem;
}

.btn:hover {
  background-color: #34D399;
  transform: scale(1.04);
}

.btn-secondary {
  background-color: #34D399;
  color: white;
}

.btn-secondary:hover {
  background-color: #F59E0B;
}

/* Footer */
footer {
  background-color: #1F2937;
  color: #D1D5DB;
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section a {
  display: block;
  margin-bottom: 0.75rem;
  color: #D1D5DB;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #F59E0B;
}

.footer-section p {
  color: #D1D5DB;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-disclaimer {
  margin: 1rem 0;
  color: #F59E0B;
  font-weight: 600;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1F2937;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Disclaimer */
.disclaimer {
  background-color: #FEF3C7;
  border-left: 4px solid #F59E0B;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer p {
  color: #92400E;
  margin: 0;
  font-size: 0.95rem;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1F2937;
  color: #E5E7EB;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-buttons .btn-accept {
  background-color: #F59E0B;
  color: white;
}

.cookie-buttons .btn-accept:hover {
  background-color: #34D399;
}

.cookie-buttons .btn-reject {
  background-color: #6B7280;
  color: white;
}

.cookie-buttons .btn-reject:hover {
  background-color: #4B5563;
}

.cookie-buttons .btn-learn {
  background-color: transparent;
  color: #F59E0B;
  border: 1px solid #F59E0B;
}

.cookie-buttons .btn-learn:hover {
  background-color: #F59E0B;
  color: white;
}

/* FAQ */
.faq-item {
  background-color: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid #34D399;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
  color: #1E3A8A;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #6B7280;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.375rem;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-image {
    height: 300px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  #cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .header-content {
    padding: 0 1rem;
  }

  .nav-menu {
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  main {
    margin-top: 70px;
  }

  .hero {
    height: auto;
    padding: 3rem 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
