:root {
  --primary-dark: #8b1a1a;
  --primary: #a52a2a;
  --primary-light: #c44d4d;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6b6b6b;
  --bg-white: #ffffff;
  --bg-light: #f8f8f8;
  --bg-cream: #faf9f7;
  --border-light: #e5e5e5;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.navbar {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark) !important;
}

.navbar-brand span {
  color: var(--text-dark);
}

.nav-link {
  color: var(--text-medium) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
}

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

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

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--bg-white);
}

.hero-content h1 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 600px;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-cream);
}

.section-title {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition);
}

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

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition);
}

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

.btn-light {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-light:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background-color: var(--bg-white);
  height: 100%;
}

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

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

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.card-text {
  color: var(--text-medium);
  line-height: 1.7;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.feature-box {
  padding: 2rem;
  text-align: center;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-box h4 {
  margin-bottom: 1rem;
}

.feature-box p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.info-block {
  padding: 3rem 0;
}

.info-block-content {
  padding: 2rem 0;
}

.info-block-content h3 {
  margin-bottom: 1.25rem;
}

.info-block-content p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.info-block-content ul {
  padding-left: 1.25rem;
  color: var(--text-medium);
}

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

.info-block-image {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

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

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

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-light);
}

.faq-section .card {
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  box-shadow: none;
}

.faq-section .card:hover {
  transform: none;
  box-shadow: none;
}

.faq-section .card-header {
  background-color: var(--bg-white);
  border-bottom: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
}

.faq-section .card-header h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-section .card-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
}

.product-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

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

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

.product-info {
  padding: 1.5rem;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.product-description {
  color: var(--text-medium);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.cta-section {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.page-header {
  background-color: var(--bg-cream);
  padding: 4rem 0;
  margin-bottom: 0;
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--text-medium);
  font-size: 1.125rem;
  margin-bottom: 0;
}

.contact-info {
  background-color: var(--bg-cream);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.contact-info h4 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-info p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.contact-info strong {
  color: var(--text-dark);
}

.contact-form {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.contact-form .form-control {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(165, 42, 42, 0.1);
}

.contact-form label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.custom-checkbox .custom-control-label::before {
  border-color: var(--border-light);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

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

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

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

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

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thank-you-section h1 {
  margin-bottom: 1rem;
}

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

.footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--bg-white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

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

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

.footer-bottom p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

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

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--primary-light);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.btn-accept {
  background-color: var(--primary);
  border: none;
  color: var(--bg-white);
}

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

.btn-decline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-white);
}

.btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
}

.about-values {
  background-color: var(--bg-cream);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.about-values h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.about-values p {
  color: var(--text-medium);
  margin-bottom: 0;
}

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

.advisor-card {
  text-align: center;
  padding: 2rem;
}

.advisor-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-light);
}

.advisor-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.advisor-role {
  color: var(--primary);
  font-size: 0.875rem;
}

@media (max-width: 991px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero-section {
    min-height: 60vh;
  }

  .info-block-image {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .hero-section {
    min-height: 50vh;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}
