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

body {
  font-family: 'Roboto', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2c3e50;
  background-color: #f8f9fa;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2rem;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

a:hover {
  color: #27ae60;
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  background-color: #34495e;
  color: white;
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2ecc71;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #2ecc71;
  text-decoration: none;
}

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

section {
  padding: 4rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.section-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.section-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

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

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-top: 2rem;
}

.section-alt {
  background-color: #ffffff;
}

.section-light {
  background-color: #f8f9fa;
}

.section-accent {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.08) 0%, rgba(52, 73, 94, 0.08) 100%);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.row.reverse {
  direction: rtl;
}

.row.reverse > div {
  direction: ltr;
}

.row img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content {
  padding: 2rem;
}

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

.card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #2ecc71;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

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

.card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

table th {
  background-color: #34495e;
  color: white;
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #e0e0e0;
}

table tr:hover {
  background-color: #f5f5f5;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: #2ecc71;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #2ecc71;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #27ae60;
  border-color: #27ae60;
  text-decoration: none;
  color: white;
}

.btn-secondary {
  background-color: transparent;
  color: #34495e;
  border: 2px solid #34495e;
}

.btn-secondary:hover {
  background-color: #34495e;
  color: white;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

footer {
  background-color: #34495e;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: #2ecc71;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.disclaimer {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  color: #856404;
}

.disclaimer h3 {
  color: #856404;
  margin-top: 0;
}

form {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #34495e;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #34495e;
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  min-width: 200px;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #2ecc71;
  color: white;
}

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

.cookie-decline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

.cookie-learn {
  background-color: transparent;
  color: #2ecc71;
  border: 2px solid #2ecc71;
}

.cookie-learn:hover {
  background-color: #2ecc71;
  color: white;
}

.highlight {
  color: #2ecc71;
  font-weight: 600;
}

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

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

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

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-left: 4px solid #2ecc71;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-item h4 {
  color: #34495e;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item h4:hover {
  color: #2ecc71;
}

.faq-answer {
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .row.reverse {
    direction: ltr;
  }
  
  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .section-hero {
    padding: 3rem 0;
  }
  
  .hero-image {
    max-width: 100%;
  }
  
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
