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

:root {
  --primary-color: #00A19D;
  --primary-light: #00D4CC;
  --primary-dark: #008B88;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --bg-light: #F8FBFB;
  --bg-white: #FFFFFF;
  --border-radius: 16px;
}

html, body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 161, 157, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--primary-dark);
  text-decoration: none;
}

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

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

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hero {
  background: linear-gradient(135deg, rgba(0, 161, 157, 0.15), rgba(255, 255, 255, 0.9)), url('images/hero.jpg') center/cover;
  background-attachment: fixed;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

section {
  padding: 3rem 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.section-text {
  flex: 1;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.section-image img,
.blog-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px rgba(0, 161, 157, 0.15);
  transition: transform 0.3s ease;
}

.section-image img:hover,
.blog-image:hover {
  transform: scale(1.02);
}

.blog-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.blog-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 161, 157, 0.2);
  transform: translateY(-4px);
}

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

.blog-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  box-shadow: 0 8px 20px rgba(0, 161, 157, 0.3);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

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

.faq-item h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
}

.disclaimer-box {
  background: linear-gradient(135deg, rgba(0, 161, 157, 0.1), rgba(0, 212, 204, 0.05));
  border: 2px solid var(--primary-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  text-align: center;
}

.disclaimer-box p {
  margin: 0;
  font-weight: 500;
  color: var(--text-dark);
}

footer {
  background: linear-gradient(135deg, var(--text-dark), #34495E);
  color: #ECF0F1;
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.95rem;
  color: #BDC3C7;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
  color: #BDC3C7;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #95A5A6;
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #E0E0E0;
  border-radius: var(--border-radius);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--primary-color);
  padding: 1.5rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  max-height: 200px;
  overflow-y: auto;
}

.consent-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.consent-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.consent-buttons {
  display: flex;
  gap: 1rem;
}

.consent-button {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consent-button:hover {
  background: var(--primary-color);
  color: white;
}

.consent-button.accept {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.consent-banner.hidden {
  display: none;
}

@media (max-width: 768px) {
  header {
    padding: 0.75rem 0;
  }

  .hero {
    min-height: 350px;
    padding: 2rem 1rem;
  }

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

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

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section-content {
    grid-template-columns: 1fr;
  }

  section {
    padding: 2rem 1rem;
  }

  .consent-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .consent-button {
    width: 100%;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .nav-link {
    margin: 0.25rem 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.6s ease;
}
