:root {
  --primary-color: #ADD8E6;
  --accent-1: #4682B4;
  --accent-2: #8FBC8F;
  --accent-3: #DDA0DD;
  --bg-light: #FFFFFF;
  --bg-secondary: #F5F5F5;
  --text-dark: #2C2C2C;
  --text-muted: #666666;
  --border-color: #E0E0E0;
}

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

html, body {
  font-family: 'Lato', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-1);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-size: 16px;
  margin-left: 30px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-1);
}

.section {
  padding: 100px 0;
}

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

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

.section-primary {
  background-color: var(--primary-color);
}

.container-custom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 992px) {
  .container-custom {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
  .container-custom {
    padding: 0 20px;
  }
  .section {
    padding: 60px 0;
  }
}

.hero-section {
  background-color: var(--primary-color);
  padding: 120px 0;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text h1 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

.two-column {
  display: flex;
  gap: 60px;
  align-items: center;
}

.two-column-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(70, 130, 180, 0.1);
}

.card h3 {
  color: var(--accent-1);
  margin-bottom: 15px;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-1);
  color: var(--bg-light);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.button:hover {
  background-color: var(--accent-2);
  transform: translateY(-2px);
}

.button-secondary {
  background-color: var(--accent-2);
}

.button-secondary:hover {
  background-color: var(--accent-1);
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 60px 0 30px;
  margin-top: 100px;
}

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

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section a {
  display: block;
  color: var(--bg-light);
  margin-bottom: 10px;
  font-size: 14px;
}

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

.footer-info {
  font-size: 14px;
  line-height: 1.8;
}

.footer-disclaimer {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  background-color: rgba(173, 216, 230, 0.1);
}

.disclaimer {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--accent-1);
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--accent-1);
  color: var(--bg-light);
}

.cookie-accept:hover {
  background-color: var(--accent-2);
}

.cookie-reject {
  background-color: transparent;
  color: var(--bg-light);
  border: 1px solid var(--bg-light);
}

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

.cookie-learn {
  background-color: transparent;
  color: var(--accent-1);
  border: 1px solid var(--accent-1);
  text-decoration: none;
  padding: 10px 20px;
}

.cookie-learn:hover {
  background-color: rgba(70, 130, 180, 0.1);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    padding: 0 20px;
  }
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cookie-btn, .cookie-learn {
    width: 100%;
  }
  .hero-content {
    flex-direction: column;
  }
  .two-column {
    flex-direction: column;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}
