:root {
  --primary-color: #d5622a;
  --primary-dark: #b54e1f;
  --secondary-color: #2a2a2a;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --border-color: #dee2e6;
  --white: #ffffff;
  --text-color: #333333;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
}

.main-content {
  padding-top: 76px;
  min-height: calc(100vh - 300px);
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(213, 98, 42, 0.3);
}

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

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

.hero-section {
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
}

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

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

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

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.content-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.content-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.page-header {
  padding: 4rem 0 3rem;
  background-color: var(--light-gray);
  margin-bottom: 3rem;
}

.page-header h1 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.card {
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.card-title {
  color: var(--primary-color);
  font-weight: 600;
}

.quote-card {
  border-left: 4px solid var(--primary-color);
}

.testimonial-card {
  border-left: 4px solid var(--primary-color);
}

.approach-card,
.value-card {
  transition: all 0.3s ease;
}

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

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

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
  border-bottom: none;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section .btn-primary {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background-color: var(--light-gray);
  border-color: var(--light-gray);
  color: var(--primary-color);
}

.cta-section .btn-outline-primary {
  color: var(--white);
  border-color: var(--white);
}

.cta-section .btn-outline-primary:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-color);
}

.footer {
  margin-top: 4rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(213, 98, 42, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.accordion .btn-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.accordion .btn-link:hover {
  color: var(--primary-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-banner .btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

.cookie-banner .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .lead {
    font-size: 1.2rem;
  }

  .hero-image {
    height: 400px;
  }

  .content-section {
    padding: 3rem 0;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}
