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

html, body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

body {
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #3498DB;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav a:hover {
  color: #3498DB;
}

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

section {
  padding: 80px 30px;
  margin: 0 auto;
  max-width: 1400px;
}

.hero-section {
  background: linear-gradient(135deg, #F0F2F5 0%, #ffffff 100%);
  padding: 120px 30px;
  text-align: left;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.hero-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

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

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

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

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

.column-text h2 {
  margin-bottom: 20px;
}

.column-text p {
  margin-bottom: 15px;
}

.column-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  background-color: #F0F2F5;
  padding: 30px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(52, 152, 219, 0.15);
}

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

.card h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.card p {
  color: #666;
  font-size: 14px;
}

.cta-button {
  display: inline-block;
  background-color: #3498DB;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #2980B9;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-button-secondary {
  background-color: #2ECC71;
}

.cta-button-secondary:hover {
  background-color: #27AE60;
}

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 60px 30px 30px;
  margin-top: 80px;
}

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

.footer-section h4 {
  color: #3498DB;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.footer-section p, .footer-section a {
  font-size: 14px;
  line-height: 1.8;
  color: #ecf0f1;
  text-decoration: none;
}

.footer-section a:hover {
  color: #3498DB;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(236, 240, 241, 0.2);
  font-size: 13px;
  color: #bdc3c7;
}

.disclaimer {
  background-color: #FFA07A;
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 6px;
  margin: 30px 0;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498DB;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.contact-info {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.info-item h3 {
  margin-bottom: 15px;
  color: #3498DB;
}

.info-item p {
  color: #666;
  margin-bottom: 10px;
}

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

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-content {
  flex: 1;
  margin-right: 30px;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cookie-accept {
  background-color: #3498DB;
  color: #ffffff;
}

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

.cookie-reject {
  background-color: transparent;
  border: 1px solid #ecf0f1;
  color: #ecf0f1;
}

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

.cookie-learn {
  background-color: transparent;
  border: 1px solid #ecf0f1;
  color: #ecf0f1;
}

.cookie-learn:hover {
  background-color: rgba(236, 240, 241, 0.1);
}

.accordion {
  margin: 30px 0;
}

.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-header {
  background-color: #F0F2F5;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #e0e3e8;
}

.accordion-content {
  padding: 20px;
  background-color: #ffffff;
  display: none;
  color: #666;
}

.accordion-content.show {
  display: block;
}

.thank-you-message {
  text-align: center;
  max-width: 600px;
  margin: 80px auto;
  padding: 40px;
  background-color: #F0F2F5;
  border-radius: 8px;
}

.thank-you-message h1 {
  color: #2ECC71;
  margin-bottom: 20px;
}

.thank-you-message p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.8;
}

.disclaimer-section {
  background-color: #F0F2F5;
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
}

.disclaimer-section h3 {
  color: #FFA07A;
  margin-bottom: 20px;
}

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

.disclaimer-section li {
  padding: 10px 0;
  color: #666;
  border-bottom: 1px solid #ddd;
}

.disclaimer-section li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  header {
    padding: 0;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  main {
    margin-top: 120px;
  }

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

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

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

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

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

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

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-content {
    margin-right: 0;
  }

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

  .cookie-btn {
    width: 100%;
  }

  section {
    padding: 50px 20px;
  }
}
