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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.gradient-bg {
  background: linear-gradient(135deg, #56ccf2 0%, #2f80ed 100%);
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2f80ed;
  text-decoration: none;
}

.navbar-brand:hover {
  color: #56ccf2;
  text-decoration: none;
}

.nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #2f80ed;
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #56ccf2 0%, #2f80ed 100%);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background: #f8f9fa;
}

.section-white {
  background: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2f80ed;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary-custom {
  background: linear-gradient(135deg, #56ccf2 0%, #2f80ed 100%);
  border: none;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(47,128,237,0.3);
  color: #fff;
  text-decoration: none;
}

.table-custom {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.table-custom thead {
  background: linear-gradient(135deg, #56ccf2 0%, #2f80ed 100%);
  color: #fff;
}

.table-custom th {
  padding: 1rem;
  font-weight: 600;
  text-align: left;
}

.table-custom td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.table-custom tbody tr:hover {
  background: #f8f9fa;
}

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

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2f80ed;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #555;
  line-height: 1.8;
}

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

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

.disclaimer-box p {
  color: #856404;
  line-height: 1.8;
}

.footer {
  background: #2c3e50;
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: #56ccf2;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer a {
  color: #ecf0f1;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer a:hover {
  color: #56ccf2;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #95a5a6;
  font-size: 0.9rem;
}

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

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

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

.cookie-banner button {
  background: #56ccf2;
  border: none;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-banner button:hover {
  background: #2f80ed;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
}

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

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.policy-content h2 {
  color: #2f80ed;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.policy-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .table-custom {
    font-size: 0.9rem;
  }
  
  .table-custom th,
  .table-custom td {
    padding: 0.5rem;
  }
}
