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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.gradient-primary {
  background: linear-gradient(135deg, #ff9a8b 0%, #ff6a88 100%);
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9a8b 0%, #ff6a88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,154,139,0.1) 0%, rgba(255,106,136,0.1) 100%);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 3rem;
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
}

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

.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
}

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

.content-block {
  background: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.image-wrapper {
  margin: 2rem 0;
  border-radius: 10px;
  overflow: hidden;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.table-responsive {
  overflow-x: auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #fff;
}

.info-table th {
  background: linear-gradient(135deg, #ff9a8b 0%, #ff6a88 100%);
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

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

.info-table tr:hover {
  background: #fafafa;
}

.btn-primary {
  background: linear-gradient(135deg, #ff9a8b 0%, #ff6a88 100%);
  border: none;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255,106,136,0.3);
  color: #fff;
  text-decoration: none;
}

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

.disclaimer-box h3 {
  color: #ff6a88;
  margin-bottom: 0.5rem;
}

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

.faq-item h3 {
  color: #ff6a88;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.footer {
  background: #2c2c2c;
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

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

.footer a:hover {
  color: #ff9a8b;
}

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

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

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #999;
}

.contact-info {
  line-height: 2;
}

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: #ff9a8b;
  box-shadow: 0 0 5px rgba(255,154,139,0.3);
}

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

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

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

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

.alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.policy-content {
  line-height: 1.8;
}

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

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

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

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .content-block {
    padding: 1.5rem;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}
