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

:root {
  --primary-color: #d2691e;
  --primary-dark: #b8531a;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-dark: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
  --border-color: #dee2e6;
}

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

.navbar {
  background-color: var(--dark-bg) !important;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.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 {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--dark-bg);
}

.hero {
  position: relative;
  min-height: 600px;
}

.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(26, 26, 26, 0.6), rgba(26, 26, 26, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.page-header {
  background-color: var(--light-bg);
  padding: 3rem 0;
  border-bottom: 3px solid var(--primary-color);
}

.info-card,
.mission-card,
.technique-card,
.article-card,
.product-card,
.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-card:hover,
.mission-card:hover,
.technique-card:hover,
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.info-card h4,
.mission-card h4,
.technique-card h4,
.article-card h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.products-section {
  background-color: var(--light-bg);
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card h4 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.product-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.breathing-exercise ol {
  padding-left: 1.5rem;
}

.breathing-exercise li {
  margin-bottom: 0.5rem;
}

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-color);
  font-style: normal;
}

.faq-section {
  background-color: var(--white);
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-header button {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  background-color: var(--light-bg);
  border: none;
}

.faq-header button:hover {
  background-color: #e9ecef;
  color: var(--primary-color);
}

.faq-header button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white);
}

.faq-body {
  padding: 1.25rem;
  background-color: var(--white);
}

.cta-section {
  background-color: var(--dark-bg);
}

.footer {
  background-color: var(--dark-bg);
}

.footer h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.footer ul li {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 8px 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;
}

.text-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact-info h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(210, 105, 30, 0.25);
}

.policy-content h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.policy-content ul li {
  margin-bottom: 0.5rem;
}

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

.thank-you-icon {
  display: inline-block;
}

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

  .hero-image {
    height: 400px;
  }

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

  .navbar-nav .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .product-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
  }
}
