:root {
  --primary-color: #00ced1;
  --secondary-color: #f5f5dc;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #8a8a8a;
  --bg-light: #fafaf8;
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
}

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

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

html {
  scroll-behavior: smooth;
}

.site-header {
  background: var(--bg-white);
  box-shadow: 0 2px 10px var(--shadow-light);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

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

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

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

.btn-cta {
  background: linear-gradient(135deg, var(--primary-color), #00b8bb);
  color: var(--bg-white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 206, 209, 0.3);
  color: var(--bg-white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #00b8bb);
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 206, 209, 0.3);
  background: linear-gradient(135deg, #00b8bb, var(--primary-color));
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.hero-section {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--secondary-color), var(--bg-light));
}

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

.hero-text {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

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

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

.section-intro {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.card-custom {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 2px 15px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.card-custom h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1rem 0;
}

.card-custom p {
  color: var(--text-medium);
  line-height: 1.6;
}

.rounded-image {
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px var(--shadow-light);
  width: 100%;
  height: auto;
}

.disclaimer-box {
  background: var(--bg-white);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow-light);
}

.disclaimer-box h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-list {
  list-style: none;
  padding: 0;
}

.disclaimer-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-medium);
}

.disclaimer-list li:last-child {
  border-bottom: none;
}

.disclaimer-list li:before {
  content: "✗ ";
  color: #e74c3c;
  font-weight: bold;
  margin-right: 0.5rem;
}

.disclaimer-list.positive li:before {
  content: "✓ ";
  color: var(--primary-color);
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.faq-item h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

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

.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  margin-top: 2rem;
}

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

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.contact-info {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--shadow-light);
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.site-footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0 30px;
}

.site-footer h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.site-footer p {
  color: #cccccc;
  line-height: 1.6;
}

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

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

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

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: #999999;
  margin: 0;
}

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

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: var(--primary-color);
}

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

.btn-accept {
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-accept:hover {
  opacity: 0.9;
}

.btn-decline {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

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

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

  .hero-section {
    padding: 120px 0 60px;
  }

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
