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

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

:root {
  --primary-blue: #007BFF;
  --bright-green: #28A745;
  --amber-yellow: #FFC107;
  --neutral-gray: #6C757D;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --dark-gray: #212529;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--dark-gray);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--primary-blue);
  text-decoration: none;
}

.navbar-brand img {
  height: 40px;
  margin-right: 0.5rem;
}

.nav-link {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-gray) !important;
  font-weight: 600;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

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

section {
  padding: 4rem 0;
}

.hero-section {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
  padding: 6rem 0;
  text-align: center;
}

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

.hero-section .subtitle {
  font-size: 1.3rem;
  color: var(--neutral-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 2rem;
  max-height: 400px;
  object-fit: cover;
}

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

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

.two-column img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 350px;
  object-fit: cover;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

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

.card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.2);
  transform: translateY(-2px);
}

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

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

.card p {
  font-size: 0.95rem;
  color: var(--neutral-gray);
}

.text-content {
  padding: 2rem;
}

.highlight {
  background-color: rgba(255, 193, 7, 0.1);
  padding: 0.2rem 0.4rem;
  border-left: 4px solid var(--amber-yellow);
  margin: 2rem 0;
  padding-left: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.highlight p {
  margin: 0;
  font-weight: 600;
  color: var(--dark-gray);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  text-decoration: none;
  color: var(--white);
}

.disclaimer-section {
  background-color: #e8f4f8;
  border-left: 4px solid var(--primary-blue);
  padding: 2rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.disclaimer-section h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
}

.disclaimer-section p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin: 0.5rem 0;
}

.disclaimer-banner {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
  border-radius: 6px;
}

footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bright-green);
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-section p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.footer-policies {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-policies a {
  color: var(--bright-green);
  text-decoration: none;
  margin: 0 1rem;
  display: inline-block;
}

.footer-policies a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Open Sans', 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-blue);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

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

.form-disclaimer {
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.thankyou-message {
  text-align: center;
  padding: 4rem 0;
}

.thankyou-message h1 {
  color: var(--bright-green);
}

.thankyou-message a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.thankyou-message a:hover {
  text-decoration: underline;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1.5rem;
}

.faq-item h4 {
  font-family: 'Lato', sans-serif;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  cursor: pointer;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--dark-gray);
  margin: 0;
}

.content-list {
  list-style: none;
  padding-left: 0;
}

.content-list li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.content-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bright-green);
  font-weight: bold;
  font-size: 1.2rem;
}

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

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

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

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
}

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

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

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

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

.cookie-reject {
  background-color: #666;
  color: white;
}

.cookie-reject:hover {
  background-color: #555;
}

.cookie-learn {
  background-color: transparent;
  color: var(--bright-green);
  border: 1px solid var(--bright-green);
}

.cookie-learn:hover {
  background-color: rgba(40, 167, 69, 0.1);
}

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

  h2 {
    font-size: 1.6rem;
  }

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

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

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

  .hero-section {
    padding: 3rem 0;
  }

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

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

  .cookie-btn {
    width: 100%;
  }

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