:root {
  --accent-color: #32CD32;
  --dark-text: #2c3e50;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #dee2e6;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark-text);
  font-size: 24px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.hero-section {
  margin-top: 70px;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

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

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-text);
}

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

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-primary {
  background: var(--accent-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary:hover {
  background: #28a428;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
  text-decoration: none;
  color: var(--white);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 50px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.column-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.column-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 25px;
}

.column-text p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 15px;
}

.column-text ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.column-text li {
  color: var(--gray);
  margin-bottom: 10px;
}

.column-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.image-left {
  grid-template-columns: 1fr 1fr;
}

.image-right {
  grid-template-columns: 1fr 1fr;
}

.image-right .column-image {
  order: 2;
}

.image-right .column-text {
  order: 1;
}

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

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

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

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

.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.card p {
  color: var(--gray);
  font-size: 15px;
}

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

.bg-white {
  background: var(--white);
}

.info-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.info-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #856404;
}

.info-box p {
  color: #856404;
  margin-bottom: 8px;
}

.disclaimer-box {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.disclaimer-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #721c24;
}

.disclaimer-box p {
  color: #721c24;
  margin-bottom: 8px;
}

.cta-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 30px;
}

footer {
  background: #2c3e50;
  color: var(--white);
  padding: 50px 0 20px;
}

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

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

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-section p {
  color: #bdc3c7;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
  color: #bdc3c7;
  font-size: 14px;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

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

.policy-content {
  max-width: 900px;
  margin: 80px auto 40px;
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.policy-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--dark-text);
}

.policy-content h2 {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.policy-content h3 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.policy-content p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 15px;
  padding-left: 30px;
}

.policy-content li {
  color: var(--gray);
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: var(--white);
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-accept:hover {
  background: #28a428;
}

.btn-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

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

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .image-right .column-image {
    order: 1;
  }

  .image-right .column-text {
    order: 2;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .cookie-content {
    flex-direction: column;
  }

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

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

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .section {
    padding: 50px 0;
  }

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