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

body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.accent-color {
  color: #ff8c00;
}

.bg-accent {
  background-color: #ff8c00;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff8c00;
  text-decoration: none;
}

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

.nav-link {
  color: #2c3e50;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff8c00;
}

main {
  margin-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
  padding: 80px 0;
  text-align: center;
}

.hero-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.content-section:nth-child(even) {
  background-color: #ffffff;
}

.content-section:nth-child(odd) {
  background-color: #f9f9f9;
}

.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.btn-custom {
  background-color: #ff8c00;
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background-color: #e67e00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,140,0,0.3);
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

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

.card-header {
  background-color: #ff8c00;
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}

.faq-section .card {
  margin-bottom: 15px;
}

.faq-section .card-header {
  background-color: #f9f9f9;
  color: #2c3e50;
  cursor: pointer;
}

.faq-section .card-header:hover {
  background-color: #fff8f0;
}

.disclaimer-box {
  background-color: #fff8f0;
  border-left: 4px solid #ff8c00;
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.list-styled {
  list-style: none;
  padding-left: 0;
}

.list-styled li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.list-styled li:before {
  content: "→";
  color: #ff8c00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 40px 0 20px;
}

footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

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

footer a:hover {
  color: #ff8c00;
}

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

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

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #95a5a6;
}

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

.cookie-banner p {
  margin: 0;
}

.cookie-banner .btn {
  margin-left: 15px;
}

.form-control:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 0 0.2rem rgba(255,140,0,0.25);
}

.info-notice {
  background-color: #e8f4f8;
  border-left: 4px solid #17a2b8;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .content-section {
    padding: 40px 0;
  }
}
