@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

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

body {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  background-color: #FAF8F3;
}

h1 {
  font-size: 46px;
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 18px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

.accent-text {
  color: #F9A825;
}

.btn-primary {
  background: linear-gradient(135deg, #F9A825 0%, #FFB74D 100%);
  border: none;
  color: #fff;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFB74D 0%, #F9A825 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 168, 37, 0.3);
}

header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 18px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header .logo {
  font-size: 28px;
  font-weight: 700;
  color: #F9A825;
  text-decoration: none;
}

header .logo:hover {
  text-decoration: none;
  color: #FFB74D;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #F9A825;
}

.main-content {
  margin-top: 80px;
  padding: 60px 0;
}

.hero-section {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
  padding: 80px 0;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 60px;
}

.hero-section h1 {
  margin-bottom: 25px;
}

.hero-section p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #555;
}

.hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin: 30px auto 0;
  display: block;
}

.content-section {
  margin-bottom: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.content-section img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.content-section img.float-left {
  float: left;
  margin-left: 0;
}

.content-section img.float-right {
  float: right;
  margin-right: 0;
}

.content-section::after {
  content: "";
  display: table;
  clear: both;
}

.icon-box {
  background: #FFF8E1;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid #F9A825;
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: translateX(8px);
}

.icon-box h3 {
  color: #F9A825;
  margin-bottom: 12px;
}

.table {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.table thead {
  background: #F9A825;
  color: #fff;
}

.table thead th {
  font-weight: 600;
  padding: 16px;
}

.table tbody td {
  padding: 14px;
}

.faq-item {
  background: #fff;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 4px solid #F9A825;
}

.faq-item h3 {
  color: #F9A825;
  font-size: 20px;
  margin-bottom: 10px;
}

.disclaimer-box {
  background: #FFF3CD;
  border: 2px solid #FFB74D;
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
}

.disclaimer-box h3 {
  color: #F9A825;
  margin-bottom: 15px;
}

.form-control {
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #F9A825;
  box-shadow: 0 0 0 0.2rem rgba(249, 168, 37, 0.25);
}

footer {
  background: #2C2C2C;
  color: #fff;
  padding: 50px 0 30px;
  margin-top: 80px;
}

footer h4 {
  color: #F9A825;
  font-size: 20px;
  margin-bottom: 20px;
}

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

footer a:hover {
  color: #F9A825;
  text-decoration: none;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

.footer-disclaimer {
  background: #1F1F1F;
  padding: 20px 0;
  margin-top: 30px;
  font-size: 14px;
  color: #B0B0B0;
  text-align: center;
}

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

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

.cookie-banner p {
  margin: 0 0 15px 0;
  font-size: 16px;
}

.cookie-banner .btn {
  margin-right: 10px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  body {
    font-size: 16px;
  }
  
  .hero-section {
    padding: 40px 20px;
  }
  
  .content-section {
    padding: 24px;
  }
  
  .content-section img {
    float: none !important;
    margin: 20px auto;
    display: block;
    max-width: 100%;
  }
  
  .main-content {
    padding: 30px 0;
  }
}
