:root {
  --terra-cotta: #c67b5c;
  --terra-cotta-light: #d4947a;
  --terra-cotta-dark: #a65d42;
  --bg-light: #faf8f5;
  --bg-white: #ffffff;
  --text-dark: #2c2c2c;
  --text-muted: #6b6b6b;
  --border-light: #e8e4df;
  --shadow-soft: rgba(0, 0, 0, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

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

h1 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

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

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

a {
  color: var(--terra-cotta);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--terra-cotta-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--terra-cotta) !important;
}

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

.nav-link:hover {
  color: var(--terra-cotta) !important;
}

.navbar-toggler {
  border: 1px solid var(--border-light);
}

.section {
  padding: 4rem 0;
}

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

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

.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: 3px;
  background: linear-gradient(90deg, var(--terra-cotta-light), var(--terra-cotta));
  border-radius: 2px;
}

.hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 5rem 0;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.card-custom {
  background: var(--bg-white);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-custom img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-custom .card-body {
  padding: 1.5rem;
}

.card-custom .card-title {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.card-custom .card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-box {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  border-left: 4px solid var(--terra-cotta);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--terra-cotta-light), var(--terra-cotta));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--bg-white);
  font-size: 1.5rem;
}

.disclaimer-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--terra-cotta);
  margin-bottom: 1rem;
}

.btn-cta {
  background: linear-gradient(135deg, var(--terra-cotta-light), var(--terra-cotta));
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--terra-cotta), var(--terra-cotta-dark));
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(198, 123, 92, 0.3);
}

.content-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.content-image-small {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-soft);
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 1.5rem;
}

footer h3 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

footer a {
  color: var(--terra-cotta-light);
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--terra-cotta-light);
}

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

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

.footer-notice {
  background-color: rgba(198, 123, 92, 0.15);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.footer-notice p {
  color: var(--terra-cotta-light);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

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

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

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

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

.cookie-btn {
  background-color: var(--terra-cotta);
  color: var(--bg-white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.cookie-btn:hover {
  background-color: var(--terra-cotta-dark);
}

.form-control {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--terra-cotta);
  box-shadow: 0 0 0 3px rgba(198, 123, 92, 0.15);
  outline: none;
}

.contact-info-box {
  background: linear-gradient(135deg, var(--terra-cotta-light), var(--terra-cotta));
  color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

.contact-info-box h3 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.contact-info-box p {
  color: rgba(255, 255, 255, 0.9);
}

.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.page-content {
  padding: 3rem 0;
}

.page-content h2 {
  margin-top: 2rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content ul {
  color: var(--text-muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.thank-you-box {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--terra-cotta-light), var(--terra-cotta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--bg-white);
  font-size: 2rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-content p {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 2.5rem 0;
  }

  .hero {
    padding: 3rem 0;
  }

  .card-custom img {
    height: 180px;
  }

  footer {
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1.5rem;
  }
}
