:root {
  --primary-peach: #FFB899;
  --light-peach: #FFD7C4;
  --soft-peach: #FFF0E8;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --text-dark: #212529;
}

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

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

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

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

.navbar-brand:hover {
  color: var(--primary-peach);
  text-decoration: none;
}

.nav-link {
  color: var(--medium-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--soft-peach) 0%, var(--white) 100%);
  padding: 4rem 0;
  border-radius: 16px;
  margin-bottom: 3rem;
}

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

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

.content-block {
  background: var(--white);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--light-gray);
}

.content-block-alt {
  background: linear-gradient(135deg, var(--soft-peach) 0%, var(--white) 100%);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
}

.content-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

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

p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.btn-peach {
  background: var(--primary-peach);
  color: var(--white);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255, 184, 153, 0.3);
}

.btn-peach:hover {
  background: #FF9F7A;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 184, 153, 0.4);
  text-decoration: none;
}

.btn-outline-peach {
  background: transparent;
  color: var(--primary-peach);
  border: 2px solid var(--primary-peach);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

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

.disclaimer-box {
  background: linear-gradient(135deg, var(--light-peach) 0%, var(--soft-peach) 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-peach);
  margin: 2rem 0;
}

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

.disclaimer-box p {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.disclaimer-box ul {
  margin-left: 1.5rem;
  color: var(--text-dark);
}

.disclaimer-box ul li {
  margin-bottom: 0.5rem;
}

.footer {
  background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--light-gray);
}

.footer h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.footer p,
.footer a {
  color: var(--medium-gray);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid var(--light-gray);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: 9999;
  border-top: 3px solid var(--primary-peach);
}

.cookie-banner p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cookie-banner button {
  background: var(--primary-peach);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-banner button:hover {
  background: #FF9F7A;
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.875rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: var(--primary-peach);
  box-shadow: 0 0 0 0.2rem rgba(255, 184, 153, 0.25);
  outline: none;
}

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

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

.direct-message {
  background: var(--soft-peach);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1rem 0;
  border: 2px solid var(--light-peach);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .content-block {
    padding: 1.5rem;
  }
  
  .content-image {
    height: 200px;
  }
  
  .cookie-banner {
    padding: 1rem;
  }
}
