:root {
  --primary-color: #6A5ACD;
  --primary-hover: #5a4abd;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f9f9f9;
  --border-color: #e0e0e0;
}

* {
  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);
}

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

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

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

p {
  font-size: 18px;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 32px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 1rem 0;
}

header .navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.content-section {
  padding: 80px 0;
}

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

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.blog-card {
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.blog-card-body {
  padding: 1.5rem;
}

.disclaimer-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: #856404;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0.5rem;
}

footer {
  background-color: #2c2c2c;
  color: #fff;
  padding: 3rem 0 1rem;
}

footer h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

footer a {
  color: #bbb;
  display: block;
  margin-bottom: 0.5rem;
}

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

footer p {
  color: #bbb;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c2c2c;
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner p {
  color: white;
  margin-bottom: 1rem;
}

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

.policy-content {
  padding: 100px 0 60px;
}

.policy-content h1 {
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.policy-content p {
  margin-bottom: 1.25rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .content-section {
    padding: 60px 0;
  }

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