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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2d2d2d;
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #d35400 !important;
}

.nav-link {
  color: #2d2d2d !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #d35400 !important;
}

.hero-section {
  margin-top: 56px;
  position: relative;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.page-header {
  background: #f8f9fa;
  padding: 120px 0 60px;
  margin-bottom: 0;
}

.btn-primary {
  background-color: #d35400;
  border-color: #d35400;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #a84300;
  border-color: #a84300;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 84, 0, 0.3);
}

.btn-outline-primary {
  color: #d35400;
  border-color: #d35400;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #d35400;
  border-color: #d35400;
  transform: translateY(-2px);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.footer {
  background-color: #2d2d2d;
}

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

.footer a:hover {
  color: #d35400 !important;
}

.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.cookie-banner a {
  color: white;
  text-decoration: underline;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-content {
  background: white;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-body {
  padding: 20px;
}

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #dee2e6;
}

.close-modal {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #6c757d;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 1;
}

.close-modal:hover {
  color: #2d2d2d;
}

@media (max-width: 768px) {
  .hero-image-container {
    height: 400px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .page-header {
    padding: 100px 0 40px;
  }
}

section {
  scroll-margin-top: 76px;
}

img {
  max-width: 100%;
  height: auto;
}
