:root {
  --velvet-plum: #6b2c5c;
  --velvet-plum-light: #8a4876;
  --velvet-plum-dark: #4a1e3f;
  --bg-light: #f8f7f5;
  --bg-white: #ffffff;
  --text-dark: #2c2c2c;
  --text-gray: #666666;
  --border-light: #e5e5e5;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  background: linear-gradient(135deg, var(--velvet-plum) 0%, var(--velvet-plum-dark) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: var(--bg-white) !important;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--bg-white) !important;
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  padding: 0;
  margin-bottom: 3rem;
  overflow: hidden;
  border-radius: 12px;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
  padding: 2rem;
  border-radius: 0 0 12px 12px;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title {
  color: var(--velvet-plum);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--velvet-plum) 0%, var(--velvet-plum-light) 100%);
  border-radius: 2px;
}

.content-section {
  background: var(--bg-white);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(107,44,92,0.15);
}

.content-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3d6 100%);
  border-left: 4px solid var(--velvet-plum);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.disclaimer-box h3 {
  color: var(--velvet-plum);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

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

.btn-custom {
  background: white;
  color: var(--velvet-plum);
  border: 2px solid white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.btn-custom:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

footer {
  background: linear-gradient(135deg, var(--velvet-plum-dark) 0%, var(--velvet-plum) 100%);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

footer .contact-info p {
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.9);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--velvet-plum-dark) 0%, var(--velvet-plum) 100%);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0 0 1rem 0;
}

.cookie-banner button {
  background: white;
  color: var(--velvet-plum);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.table-responsive {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
}

table {
  background: var(--bg-white);
}

table thead {
  background: linear-gradient(135deg, var(--velvet-plum) 0%, var(--velvet-plum-light) 100%);
  color: white;
}

table th {
  font-weight: 600;
}

table tbody tr:hover {
  background-color: rgba(107,44,92,0.05);
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 1.8rem;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .content-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .hero-overlay h1 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}
