:root {
  --color-primary: #d4a574;
  --color-primary-light: #e8d4c4;
  --color-primary-dark: #b8956a;
  --color-bg: #faf8f5;
  --color-bg-alt: #f5f0eb;
  --color-text: #3d3d3d;
  --color-text-light: #6b6b6b;
  --color-white: #ffffff;
  --color-border: #e8e4df;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.navbar {
  background: var(--color-white);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.navbar-brand:hover {
  color: var(--color-primary-dark);
}

.nav-link {
  color: var(--color-text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

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

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.hero-section {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-white) 100%);
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-white {
  background: var(--color-white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
  border-radius: 2px;
}

.content-block {
  margin-bottom: 2rem;
}

.content-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.content-image-large {
  height: 400px;
}

.card-custom {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.card-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-custom img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.card-custom h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-custom p {
  font-size: 0.95rem;
}

.info-box {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg-alt) 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  border-left: 4px solid var(--color-primary);
}

.info-box h3 {
  margin-bottom: 1rem;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-light);
}

.info-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg-alt) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-cta {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.form-control {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-white);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
  outline: none;
}

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

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

.contact-info {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-info strong {
  color: var(--color-text);
}

footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

footer h3 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.disclaimer {
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  display: inline-block;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cookie-banner .btn-cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.page-header {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-white) 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
}

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

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

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

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thank-you-content {
  max-width: 500px;
}

.thank-you-content h1 {
  margin-bottom: 1.5rem;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .hero-content h1 {
    font-size: 1.875rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .card-custom {
    padding: 1.5rem;
  }
  
  .info-box {
    padding: 1.5rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
  
  .content-image {
    height: 220px;
  }
  
  .content-image-large {
    height: 280px;
  }
}
