:root {
  --accent-color: #FF7043;
  --accent-hover: #F4511E;
  --text-dark: #212529;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
}

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

body {
  font-family: 'Lato', 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.3s;
}

header .logo:hover {
  opacity: 0.8;
}

header nav a {
  color: var(--text-dark);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover {
  color: var(--accent-color);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

main {
  margin-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, rgba(255,112,67,0.05) 0%, rgba(255,255,255,1) 100%);
  padding: 4rem 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-section p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background: var(--bg-light);
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.section-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

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

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

.btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

.btn-outline-primary {
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.05);
}

.disclaimer-box {
  background: #fff3e0;
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

footer {
  background: #212529;
  color: #fff;
  padding: 3rem 0 1rem;
}

footer h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

footer a:hover {
  color: var(--accent-color);
}

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

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

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

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

.cookie-banner .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255,112,67,0.25);
}

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

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  header nav a {
    margin-left: 0;
    margin-bottom: 0.5rem;
    display: block;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
