:root {
  --accent-color: #20B2AA;
  --text-color: #333;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.header-fixed {
  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;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
  color: var(--accent-color);
  text-decoration: none;
}

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

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

.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  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 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

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

.section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.btn-custom:hover {
  background-color: #1a9189;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32,178,170,0.3);
}

.blog-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

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

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  margin-bottom: 1rem;
}

.blog-card p {
  flex: 1;
  margin-bottom: 1rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

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

.info-message {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  padding: 1rem;
  border-radius: 4px;
  color: #0c5460;
  font-size: 0.95rem;
  margin: 2rem 0;
}

.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer h4 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.cookie-banner button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

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

.contact-form {
  max-width: 600px;
}

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

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

.page-header {
  padding: 8rem 0 4rem;
  background: var(--bg-light);
  text-align: center;
}

.mt-header {
  margin-top: 70px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  
  .content-section {
    padding: 3rem 0;
  }
}
