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

:root {
  --primary-bg: #F0F2F5;
  --accent-blue: #3B82F6;
  --accent-green: #10B981;
  --accent-gold: #F59E0B;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --white: #ffffff;
  --border-light: #e0e0e0;
  --container-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

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: 1rem 0;
}

.header-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-blue);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--accent-green);
}

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

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

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

main {
  margin-top: 80px;
  padding: 0;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
}

.section-full {
  padding: 4rem 0;
  background-color: var(--primary-bg);
}

.hero-block {
  background-color: var(--primary-bg);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

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

.card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

thead {
  background-color: var(--accent-blue);
  color: var(--white);
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--border-light);
}

td {
  padding: 1rem;
  border: 1px solid var(--border-light);
  color: var(--text-light);
}

tbody tr:hover {
  background-color: var(--primary-bg);
}

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-blue);
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: transparent;
  color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.btn-secondary:hover {
  background-color: transparent;
  color: var(--accent-green);
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0;
  margin-top: 5rem;
}

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

.footer-section h4 {
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #b0b0b0;
  font-size: 0.9rem;
}

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

.disclaimer-box h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.info-block {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: var(--primary-bg);
  padding: 2rem;
  border-radius: 10px;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

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

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

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

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

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

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

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

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

.contact-info {
  background-color: var(--primary-bg);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-info strong {
  color: var(--accent-blue);
}

.highlight {
  color: var(--accent-blue);
  font-weight: 600;
}

ul, ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: var(--text-light);
}

ul li, ol li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

strong, b {
  font-weight: 700;
  color: var(--text-dark);
}

em, i {
  font-style: italic;
}

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

a:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

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

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

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-content {
    padding: 0 1rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.85rem;
  }

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

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

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

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

  .cookie-buttons {
    width: 100%;
  }

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

  main {
    margin-top: 70px;
  }

  .section {
    padding: 2.5rem 0;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 1rem;
  }

  nav ul {
    gap: 0.8rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

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

  table {
    font-size: 0.85rem;
  }

  th, td {
    padding: 0.8rem 0.5rem;
  }
}
