:root {
  --primary-color: #4ecdc4;
  --primary-dark: #3bb8af;
  --text-color: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e9ecef;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, #4ecdc4 0%, #3bb8af 100%);
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-overlay {
  width: 100%;
}

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

.disclaimer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
}

.page-header {
  background: linear-gradient(135deg, #4ecdc4 0%, #3bb8af 100%);
  padding: 4rem 0 3rem;
  color: var(--white);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

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

.limitations-box {
  background: #fff9e6;
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info-box {
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.thank-you-box {
  padding: 3rem 2rem;
}

.checkmark-circle {
  display: inline-block;
}

.footer {
  margin-top: 4rem;
}

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

.footer a:hover {
  opacity: 0.8;
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--primary-color);
  text-decoration: underline;
}

.shadow-sm {
  box-shadow: 0 2px 4px var(--shadow) !important;
}

.shadow {
  box-shadow: 0 4px 8px var(--shadow) !important;
}

img.img-fluid {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
    padding: 3rem 0;
  }

  .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .content-block {
    padding: 1.5rem;
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 0.65rem 1.5rem;
  }
}
