:root {
  --primary-color: #3a7d7d;
  --primary-dark: #2d6262;
  --accent-color: #5a9999;
  --text-dark: #2c3e50;
  --text-light: #5d6d7e;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e6ed;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

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

.btn-cta {
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
}

.btn-cta:hover {
  background: var(--primary-dark);
  color: var(--bg-white);
}

main {
  margin-top: 76px;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(58, 125, 125, 0.05) 0%, rgba(90, 153, 153, 0.08) 100%);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.rounded-image {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

.info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.info-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.info-box h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.info-box ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.info-box li {
  margin-bottom: 0.5rem;
}

.limit-card {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  height: 100%;
}

.limit-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.info-box-alt {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
}

.info-box-alt h4 {
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-info {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(58, 125, 125, 0.15);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.closing-section {
  padding: 60px 0;
  text-align: center;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 40px 0 20px;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

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

.footer-links a,
.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-link:hover {
  color: var(--bg-white);
  text-decoration: none;
}

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

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

.cookie-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.cookie-banner .btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 6px;
}

.btn-secondary {
  background: #6c757d;
  border: none;
}

.btn-outline-secondary {
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  border-color: var(--bg-white);
}

.policy-page {
  padding: 120px 0 60px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.update-date {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.policy-section ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.policy-section li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.thank-you-page {
  padding: 120px 0 60px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-quick-info {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  display: inline-block;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .navbar-nav {
    padding-top: 1rem;
  }

  .nav-link {
    padding: 0.75rem 0;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .cookie-banner .btn-sm {
    margin-bottom: 0.5rem;
    width: 100%;
  }
}
