:root {
  --primary-color: #c9bfb0;
  --text-color: #333333;
  --bg-light: #f9f8f6;
  --border-color: #e5e2dd;
}

* {
  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;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-home {
  padding: 0.5rem 1.5rem;
  background-color: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.nav-home:hover {
  opacity: 0.9;
  color: #ffffff;
  text-decoration: none;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

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

.section {
  padding: 3rem 0;
}

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

h1 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1rem 0;
}

.content-image.float-left {
  float: left;
  margin: 0 2rem 1rem 0;
  max-width: 45%;
}

.content-image.float-right {
  float: right;
  margin: 0 0 1rem 2rem;
  max-width: 45%;
}

.content-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

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

.cta-button:hover {
  opacity: 0.9;
  color: #ffffff;
  text-decoration: none;
}

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

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

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

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

.submit-button {
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.submit-button:hover {
  opacity: 0.9;
}

footer {
  background-color: var(--text-color);
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

footer p,
footer a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

footer a {
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #ffffff;
}

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

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

.footer-message {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  display: none;
}

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

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

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

.cookie-accept {
  padding: 0.6rem 1.5rem;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.cookie-accept:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .content-image.float-left,
  .content-image.float-right {
    float: none;
    max-width: 100%;
    margin: 1rem 0;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .section {
    padding: 2rem 0;
  }
}
