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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #fafafa;
  line-height: 1.7;
  font-size: 16px;
}

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

h1 {
  font-size: 48px;
  color: #3F51B5;
  margin-bottom: 20px;
}

h2 {
  font-size: 32px;
  color: #3F51B5;
  margin-bottom: 15px;
  margin-top: 0;
}

h3 {
  font-size: 24px;
  color: #3F51B5;
  margin-bottom: 12px;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 16px;
}

header {
  background-color: #3F51B5;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(63, 81, 181, 0.15);
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #FFC107;
  text-decoration: none;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

header nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 14px;
}

header nav a:hover {
  color: #FFC107;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

section {
  padding: 80px 0;
}

section:nth-child(even) {
  background-color: white;
}

section:nth-child(odd) {
  background-color: #f8f9fb;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #FFC107;
}

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

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

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

.card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3F51B5;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #303a8a;
}

.btn-secondary {
  background-color: #4CAF50;
}

.btn-secondary:hover {
  background-color: #45a049;
}

.btn-accent {
  background-color: #FFC107;
  color: #333;
}

.btn-accent:hover {
  background-color: #e0a800;
}

footer {
  background-color: #3F51B5;
  color: white;
  padding: 50px 0 20px;
  margin-top: 80px;
  font-size: 14px;
  line-height: 1.8;
}

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

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

footer a:hover {
  color: white;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-disclaimer {
  background-color: rgba(255, 193, 7, 0.1);
  padding: 15px;
  border-left: 4px solid #FFC107;
  margin-bottom: 30px;
  border-radius: 4px;
}

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

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

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

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

.cookie-banner button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background-color: #4CAF50;
  color: white;
}

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

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

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

.cookie-more {
  background-color: #FFC107;
  color: #333;
}

.cookie-more:hover {
  background-color: #e0a800;
}

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

.list-styled li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
}

.list-styled li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

.disclaimer-box {
  background-color: #f0f4ff;
  padding: 25px;
  border-left: 4px solid #3F51B5;
  border-radius: 4px;
  margin: 30px 0;
}

.disclaimer-box h3 {
  margin-top: 0;
  color: #3F51B5;
}

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

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

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

input:focus, textarea:focus {
  outline: none;
  border-color: #3F51B5;
  box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

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

.form-disclaimer {
  background-color: #fff3cd;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
  border-left: 4px solid #FFC107;
}

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  header .container {
    flex-direction: column;
    gap: 15px;
  }

  header nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

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

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

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

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

  .cookie-banner .buttons {
    width: 100%;
    flex-wrap: wrap;
  }

  section {
    padding: 50px 0;
  }

  .container {
    padding: 0 20px;
  }

  header nav a {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  .section-title h2::after {
    width: 40px;
  }

  .card {
    padding: 20px;
  }

  .grid-3 {
    gap: 20px;
  }

  header nav ul {
    gap: 10px;
  }

  footer {
    padding: 30px 0 15px;
  }
}
