:root {
  --accent-color: #C04A7C;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: #a03963;
  text-decoration: none;
}

.navbar {
  background: var(--bg-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(--accent-color);
}

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

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

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

.hero-section {
  background: linear-gradient(135deg, #fef5f8 0%, #ffffff 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero-section h1 {
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

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

.content-section:nth-child(even) {
  background-color: var(--bg-light);
}

.section-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 2rem;
}

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

.content-block h2 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.content-block h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

.content-block ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.content-block ul li:before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.btn-custom {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-custom:hover {
  background: #a03963;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 74, 124, 0.3);
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff5f8 0%, #fffbfc 100%);
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

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

footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer h5 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

footer a:hover {
  color: white;
}

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

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

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

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

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(192, 74, 124, 0.15);
}

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

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

.cookie-banner p {
  margin-bottom: 0;
}

.cookie-banner .btn {
  margin-left: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .section-image {
    height: 250px;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .content-block {
    padding: 1.5rem;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
  
  .cookie-banner .btn {
    margin-left: 0;
    margin-top: 1rem;
    display: block;
    width: 100%;
  }
}
