:root {
  --primary-color: #dc3545;
  --primary-dark: #c82333;
  --secondary-color: #2c3e50;
  --text-color: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

* {
  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;
}

.site-header {
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

.navbar {
  padding: 1rem 0;
}

.brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.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 {
  color: var(--primary-color);
}

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

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  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;
  height: 600px;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
}

.hero-image {
  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: var(--white);
}

.hero-overlay h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-overlay .lead {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-light);
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.product-card p {
  color: var(--text-light);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.category-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.category-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.category-card p {
  color: var(--text-light);
  margin: 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-color);
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.solution-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  box-shadow: var(--shadow-hover);
}

.solution-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 1.5rem 1rem;
  color: var(--secondary-color);
}

.solution-card p {
  padding: 0 1.5rem;
  color: var(--text-light);
  flex-grow: 1;
}

.solution-card .btn-link {
  padding: 0 1.5rem 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.solution-card .btn-link:hover {
  text-decoration: underline;
}

.quality-badge {
  text-align: center;
  padding: 2rem 1rem;
}

.badge-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.quality-badge h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.quality-badge p {
  color: var(--text-light);
  margin: 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-light);
  margin: 0;
}

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

.page-hero {
  background: var(--bg-light);
  padding: 4rem 0;
  margin-bottom: 0;
}

.page-hero h1 {
  font-weight: 700;
  color: var(--secondary-color);
}

.page-hero-small {
  background: var(--bg-light);
  padding: 3rem 0;
  margin-bottom: 0;
}

.page-hero-small h1 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.page-hero-small p {
  color: var(--text-light);
  margin: 0;
}

.principle-card,
.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.principle-card h3,
.feature-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.principle-card p,
.feature-card p {
  color: var(--text-light);
  margin: 0;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-form {
  background: var(--white);
}

.contact-form .form-control {
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.contact-info-card,
.office-hours-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
}

.contact-info-card h4,
.office-hours-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.contact-info-card p,
.office-hours-card p {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.contact-info-card p:last-child,
.office-hours-card p:last-child {
  margin-bottom: 0;
}

.contact-info-card a,
.contact-info-card a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.thank-you-section {
  padding: 8rem 0;
  text-align: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto 2rem;
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.site-footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

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

.cookie-banner-title {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.cookie-banner-text {
  color: var(--text-light);
  margin: 0;
}

.cookie-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.cookie-link:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .hero-section {
    height: 400px;
  }

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

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

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

  .section-title {
    font-size: 2rem;
  }

  .navbar-light .navbar-nav .nav-link.btn {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 350px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cookie-banner .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
