:root {
  --accent-color: #008080;
  --text-primary: #333;
  --text-secondary: #666;
  --bg-light: #f8f9fa;
}

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

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

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

header .logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
}

header nav a {
  color: var(--text-primary);
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover {
  color: var(--accent-color);
}

.hero-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: var(--accent-color);
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  color: #fff;
}

.btn-primary:hover {
  background-color: #006666;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,128,128,0.3);
  color: #fff;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-light);
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 700;
}

h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 600;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
}

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

.blog-card a {
  text-decoration: none;
  color: inherit;
}

.blog-card h3 {
  padding: 20px;
  margin: 0;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
}

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

.disclaimer-box {
  background-color: #fff3cd;
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
}

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

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

footer .footer-links {
  margin: 20px 0;
}

footer .footer-links a {
  margin-right: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 20px;
  z-index: 1001;
  display: none;
}

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

.cookie-banner button {
  background-color: var(--accent-color);
  border: none;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 15px;
}

@media (max-width: 768px) {
  header nav a {
    margin-left: 15px;
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .section {
    padding: 50px 0;
  }
}
