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

html,
body {
  height: 100%;
}

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

a {
  color: #c41e3a;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #a01729;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #2c3e50;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

header {
  background-color: #ffffff;
  border-bottom: 2px solid #c41e3a;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  color: #c41e3a !important;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar-brand:hover {
  color: #a01729 !important;
}

nav a {
  color: #2c3e50 !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

nav a:hover {
  color: #c41e3a !important;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 4rem 1rem;
  text-align: center;
  border-bottom: 3px solid #c41e3a;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.btn-primary {
  background-color: #c41e3a;
  border-color: #c41e3a;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #a01729;
  border-color: #a01729;
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background-color: #2c3e50;
  border-color: #2c3e50;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
}

.card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background-color: #ffffff;
  height: 100%;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.15);
  transform: translateY(-4px);
}

.card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  nav a {
    margin: 0.25rem 0;
  }
}

section {
  padding: 3rem 1rem;
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
}

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
  border-top: 3px solid #c41e3a;
}

footer a {
  color: #c41e3a;
}

footer a:hover {
  color: #ff4d6d;
  text-decoration: underline;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section p {
  color: #bbb;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: #c41e3a;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.35rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.thank-you-container {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 600px;
}

.thank-you-container h1 {
  color: #c41e3a;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-container p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.breadcrumb-nav {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: #c41e3a;
}

.breadcrumb-nav .separator {
  color: #999;
  margin: 0 0.5rem;
}

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

#cookie-consent.show {
  display: block;
}

#cookie-consent button {
  margin-left: 1rem;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  #cookie-consent button {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.policy-text {
  color: #555;
  line-height: 1.8;
}

.policy-text h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-text h3 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-text ul,
.policy-text ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-text li {
  margin-bottom: 0.5rem;
  color: #555;
}

.last-updated {
  color: #999;
  font-size: 0.85rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}
