:root {
  --primary-beige: #E8D5C4;
  --light-beige: #F5F0EB;
  --soft-cream: #FFF9F5;
  --text-dark: #2C2C2C;
  --text-medium: #5A5A5A;
  --border-light: #E5E5E5;
}

* {
  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-dark);
  background-color: var(--soft-cream);
  line-height: 1.6;
  font-size: 16px;
}

.navbar {
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--light-beige) 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  color: var(--text-dark);
  opacity: 0.8;
}

.navbar-nav .nav-link {
  color: var(--text-medium);
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--text-dark);
}

.hero-section {
  background: linear-gradient(to bottom, var(--light-beige), var(--soft-cream));
  padding: 4rem 0;
  border-radius: 0 0 20px 20px;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-section {
  padding: 4rem 0;
}

.content-block {
  margin-bottom: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.content-block h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.content-block p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.disclaimer-block {
  background: linear-gradient(135deg, var(--light-beige) 0%, var(--primary-beige) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-beige);
  margin: 3rem 0;
}

.disclaimer-block h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

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

.disclaimer-block li {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  color: var(--text-medium);
}

.disclaimer-block li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-beige);
  font-weight: bold;
  font-size: 1.2rem;
}

.cta-soft {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cta-soft h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-soft p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.btn-soft {
  background-color: var(--primary-beige);
  color: var(--text-dark);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem;
}

.btn-soft:hover {
  background-color: #D9C5B4;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3C3C3C 100%);
  color: #E5E5E5;
  padding: 3rem 0 1.5rem 0;
  margin-top: 4rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

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

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin: 2rem 0;
}

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

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

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-beige);
  box-shadow: 0 0 0 3px rgba(232, 213, 196, 0.1);
}

.btn-submit {
  background-color: var(--primary-beige);
  color: var(--text-dark);
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #D9C5B4;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.policy-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin: 2rem 0;
}

.policy-content h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}

.policy-content h3 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.policy-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #3C3C3C 100%);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

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

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

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner button {
  background-color: var(--primary-beige);
  color: var(--text-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-banner button:hover {
  background-color: #D9C5B4;
  transform: translateY(-2px);
}

.thank-you-message {
  background: linear-gradient(135deg, var(--light-beige) 0%, var(--soft-cream) 100%);
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.thank-you-message h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.thank-you-message p {
  color: var(--text-medium);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-image {
    height: 250px;
  }
  
  .content-block {
    padding: 1.5rem;
  }
  
  .policy-content {
    padding: 2rem;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer {
    text-align: center;
  }
}
