@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lato:wght@400;700&display=swap');

:root {
  --primary: #4CAF50;
  --accent-gold: #FFD700;
  --accent-dark: #004D40;
  --bg-light: #F5F5DC;
  --text-dark: #333;
  --text-light: #666;
  --border-light: #e0e0e0;
}

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

html, body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  color: var(--accent-dark);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
}

main {
  margin-top: 80px;
  min-height: 100vh;
}

.section {
  padding: 5rem 0;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.section:nth-child(even) {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.section-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, #66BB6A 100%);
  color: #fff;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.hero-section h1 {
  color: #fff;
  font-size: 3.5rem;
}

.hero-section p {
  color: rgba(255,255,255,0.95);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 4px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.card h3 {
  margin-top: 1rem;
}

.card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #45a049;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}

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

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

footer {
  background-color: var(--accent-dark);
  color: #fff;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
  border-top: 4px solid var(--primary);
}

footer h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

footer p, footer a {
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.8;
}

footer a:hover {
  color: var(--accent-gold);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 2rem 0;
  padding-top: 2rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.disclaimer {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 2px;
}

.disclaimer p {
  margin-bottom: 0.5rem;
}

.contact-form-disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: #fff;
  padding: 1.5rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

.cookie-text p {
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

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

.cookie-decline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.cookie-decline:hover {
  background-color: rgba(255,255,255,0.1);
}

.cookie-learn {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

.cookie-learn:hover {
  background-color: #e6c200;
}

.breadcrumb {
  background-color: var(--bg-light);
  padding: 1rem 0;
  margin-bottom: 3rem;
}

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

.breadcrumb a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.full-section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.text-center {
  text-align: center;
}

.text-success {
  color: var(--primary);
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  .section {
    flex-direction: column !important;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .section-image {
    order: -1;
  }

  .hero-section {
    min-height: 400px;
    padding: 3rem 1.5rem;
  }

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

  .hero-image {
    max-height: 300px;
  }

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

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

  .cookie-buttons {
    width: 100%;
  }

  .nav-link {
    margin: 0.5rem 0;
  }

  header {
    padding: 0.75rem 0;
  }

  main {
    margin-top: 70px;
  }
}
