:root {
  --primary: #D97706;
  --accent: #6B7280;
  --cream: #FDFBF7;
  --dark-blue: #1E3A8A;
  --white: #FFFFFF;
  --light-gray: #F3F4F6;
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Baloo', sans-serif;
  line-height: 1.85;
  color: #374151;
  background-color: var(--cream);
  overflow-x: hidden;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-blue);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.5px;
}

h2 {
  font-size: 41px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-blue);
  margin-bottom: 24px;
  margin-top: 40px;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 16px;
  margin-top: 24px;
}

p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.85;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--dark-blue);
}

blockquote {
  font-size: 24px;
  font-style: italic;
  color: var(--accent);
  padding-left: 24px;
  border-left: 3px solid var(--primary);
  margin: 32px 0;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 16px 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 12px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

main {
  padding-top: 80px;
}

.hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(107, 114, 128, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-basket.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 1;
  animation: parallax-effect 30s ease-in-out infinite;
}

@keyframes parallax-effect {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
}

.hero h1 {
  font-size: 64px;
  color: var(--dark-blue);
  margin-bottom: 24px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 32px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.section:nth-child(even) {
  flex-direction: row-reverse;
  background-color: var(--light-gray);
}

.section-image {
  flex: 1;
  min-height: 400px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.section-image:hover img {
  transform: scale(1.06);
}

.section-content {
  flex: 1;
}

.section-content h2 {
  margin-top: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.card {
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
}

.card:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(217, 119, 6, 0.15);
}

.card h3 {
  color: var(--primary);
  margin-top: 0;
}

.card p {
  margin-bottom: 0;
  font-size: 14px;
  color: #6B7280;
}

.card a {
  color: var(--primary);
  font-weight: 600;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.card a:hover {
  transform: translateX(4px);
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #EA8C00 100%);
  color: white;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.btn-secondary {
  background: var(--accent);
  color: white;
}

.btn-secondary:hover {
  background: var(--dark-blue);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

th, td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

th {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
}

tr:hover {
  background-color: var(--light-gray);
}

.faq-item {
  background-color: var(--white);
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 24px;
  background-color: var(--light-gray);
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--primary);
  color: white;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  padding: 24px;
  max-height: 500px;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 40px auto;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
  font-size: 14px;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 120px;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-disclaimer {
  background-color: var(--light-gray);
  padding: 16px;
  border-radius: 8px;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 24px;
  border-left: 4px solid var(--primary);
}

.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 60px 40px;
  margin-top: 120px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #D1D5DB;
  margin-bottom: 8px;
}

.footer-section a {
  color: #D1D5DB;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: #9CA3AF;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
  padding: 24px 40px;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-top: 4px solid var(--primary);
}

.cookie-banner.active {
  max-height: 300px;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--primary);
  color: white;
}

.cookie-accept:hover {
  background-color: #B45309;
}

.cookie-refuse {
  background-color: var(--light-gray);
  color: var(--dark-blue);
  border: 1px solid #D1D5DB;
}

.cookie-refuse:hover {
  background-color: #F3F4F6;
}

.cookie-more {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.cookie-more:hover {
  background-color: var(--primary);
  color: white;
}

.disclaimer-box {
  background-color: #FEF3C7;
  border-left: 4px solid var(--primary);
  padding: 24px;
  border-radius: 8px;
  margin: 40px 0;
}

.disclaimer-box h3 {
  color: var(--dark-blue);
  margin-top: 0;
}

.disclaimer-box p {
  margin-bottom: 0;
  color: #7C2D12;
  font-size: 14px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .navbar-container {
    padding: 0 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .section {
    flex-direction: column !important;
    padding: 80px 20px;
    gap: 40px;
  }

  .section-image {
    min-height: 300px;
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-btn {
    width: 100%;
    justify-content: center;
  }

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

  form {
    padding: 24px;
    margin: 24px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .navbar-container {
    padding: 0 16px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .section {
    padding: 60px 16px;
  }

  .cards-grid {
    gap: 16px;
  }

  .card {
    padding: 20px 16px;
  }

  input[type="email"],
  textarea {
    font-size: 16px;
  }
}
