:root {
  --primary-color: #6FA8DC;
  --text-color: #333333;
  --bg-color: #FFFFFF;
  --light-bg: #F8F9FA;
  --border-color: #E0E0E0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

header {
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 15px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

main {
  margin-top: 70px;
}

.hero {
  background-color: var(--light-bg);
  padding: 4rem 0;
  text-align: center;
}

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

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.hero p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

section {
  padding: 3rem 0;
}

section:nth-child(even) {
  background-color: var(--light-bg);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

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

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-image {
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #5A8FC7;
  color: white;
}

.disclaimer-box {
  background-color: #FFF9E6;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  margin-top: 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.faq-item h3 {
  margin-bottom: 0.5rem;
}

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

footer h4 {
  margin-bottom: 1rem;
}

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

footer ul li {
  margin-bottom: 0.5rem;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  color: var(--primary-color);
}

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

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-color);
  color: white;
  padding: 1rem;
  display: none;
  z-index: 1001;
}

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

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

.cookie-accept {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

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

.info-notice {
  background-color: #E3F2FD;
  border: 1px solid var(--primary-color);
  padding: 1rem;
  border-radius: 4px;
  margin: 2rem 0;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

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

  h2 {
    font-size: 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
