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

body {
  font-family: 'Open Sans', 'Lato', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

header .navbar {
  padding: 1rem 0;
}

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

header .navbar-brand:hover {
  color: #FF7043;
  opacity: 0.8;
}

header .nav-link {
  color: #333;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

header .nav-link:hover {
  color: #FF7043;
}

main {
  margin-top: 80px;
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

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

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #FF7043;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e65a30;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,112,67,0.3);
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content-block {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.content-block:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.content-block h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.content-block h3 {
  font-size: 1.5rem;
  color: #FF7043;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.content-block p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-block ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-block li {
  margin-bottom: 0.5rem;
  color: #555;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.card-img-top {
  border-radius: 8px 8px 0 0;
  height: 250px;
  object-fit: cover;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

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

.disclaimer-box h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.disclaimer-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h5 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FF7043;
}

footer p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

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

footer a:hover {
  color: #FF7043;
}

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

footer li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #999;
  font-size: 0.875rem;
}

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

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

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

.cookie-banner button {
  margin-right: 1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.cookie-banner .btn-accept {
  background-color: #FF7043;
  color: #fff;
}

.cookie-banner .btn-accept:hover {
  background-color: #e65a30;
}

.cookie-banner .btn-decline {
  background-color: #666;
  color: #fff;
}

.cookie-banner .btn-decline:hover {
  background-color: #555;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #FF7043;
}

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

.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.info-card h4 {
  font-size: 1.125rem;
  color: #FF7043;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.info-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .content-block h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
}
