:root {
  --primary-olive: #26382f;
  --light-cream: #fdfcf8;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --border-light: #e8e6e1;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3 {
  font-weight: normal;
  color: var(--primary-olive);
  line-height: 1.3;
}

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

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

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

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

a {
  color: var(--primary-olive);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

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

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

.navbar {
  background-color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.1rem;
  color: var(--primary-olive) !important;
  font-weight: normal;
}

.nav-link {
  color: var(--text-muted) !important;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--primary-olive) !important;
}

.hero-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(38, 56, 47, 0.4), rgba(38, 56, 47, 0.6));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-content h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.section {
  padding: 4rem 0;
}

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

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

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

.content-image {
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.info-box {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--white) 100%);
  border-left: 4px solid var(--primary-olive);
  padding: 1.5rem;
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
}

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

.disclaimer-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.disclaimer-box p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-olive) 0%, #1a2a23 100%);
  color: var(--white);
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.btn-outline-light-custom {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
  background-color: var(--white);
  color: var(--primary-olive);
  text-decoration: none;
}

.btn-primary-custom {
  background-color: var(--primary-olive);
  border: none;
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #1a2a23;
  color: var(--white);
  text-decoration: none;
}

.footer {
  background-color: var(--primary-olive);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

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

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

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

.footer-disclaimer {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 0;
}

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

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-item span {
  margin-left: 1rem;
}

.form-control {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--primary-olive);
  box-shadow: 0 0 0 0.2rem rgba(38, 56, 47, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--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.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

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

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

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

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

  h2 {
    font-size: 1.9rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-section {
    height: 70vh;
  }

  .content-image img {
    height: 300px;
  }
}

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

  .hero-content h1 {
    font-size: 3.2rem;
  }
}

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

  .content-block {
    padding: 1.5rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}
