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

:root {
  --primary-black: #111111;
  --accent-red: #C8102E;
  --steel-gray: #5C5C5C;
  --bright-silver: #D9D9D9;
  --light-gray: #F5F5F5;
}

html, body {
  font-family: 'Arial', sans-serif;
  color: var(--primary-black);
  background-color: #FFFFFF;
  font-size: 18px;
  line-height: 1.7;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-black);
  z-index: 1000;
  padding: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

header .container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--bright-silver);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

header nav {
  display: flex;
  gap: 2rem;
}

header nav a {
  color: var(--bright-silver);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--accent-red);
}

body {
  padding-top: 80px;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1 {
  font-size: 62px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-black);
}

h2 .red {
  color: var(--accent-red);
}

h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.hero {
  width: 100%;
  height: 600px;
  background: url('images/hero-products.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  color: white;
  font-size: 72px;
}

.section {
  padding: 200px 0;
  border-bottom: 1px solid var(--bright-silver);
}

.section-dark {
  background-color: var(--primary-black);
  color: white;
}

.section-dark h2 {
  color: white;
}

.section-dark h2 .red {
  color: var(--accent-red);
}

.section-dark p {
  color: var(--bright-silver);
}

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

.section-gray h2 {
  color: white;
}

.section-gray h2 .red {
  color: var(--accent-red);
}

.section-gray p {
  color: var(--bright-silver);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background-color: white;
  border-radius: 4px;
}

.card:hover {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.2);
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.card p {
  color: var(--steel-gray);
  margin-bottom: 1rem;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

table th {
  background-color: var(--primary-black);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid var(--bright-silver);
}

table tr:hover {
  background-color: var(--light-gray);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid var(--accent-red);
  background-color: transparent;
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: var(--accent-red);
  color: white;
  transform: scale(1.05);
}

.cta-button.light {
  color: white;
  border-color: white;
}

.cta-button.light:hover {
  background-color: white;
  color: var(--primary-black);
}

footer {
  background-color: var(--primary-black);
  color: var(--bright-silver);
  padding: 4rem 0;
  font-size: 14px;
  margin-top: 4rem;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

footer ul {
  list-style: none;
}

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

footer a {
  color: var(--bright-silver);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-red);
}

.footer-bottom {
  border-top: 1px solid var(--steel-gray);
  padding-top: 2rem;
  text-align: center;
  font-size: 12px;
}

.disclaimer-box {
  background-color: var(--light-gray);
  border-left: 4px solid var(--accent-red);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h4 {
  color: var(--accent-red);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

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

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

.faq-item h4 {
  color: var(--accent-red);
  margin-bottom: 1rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.faq-item p {
  color: var(--steel-gray);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--bright-silver);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-red);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.text-center {
  text-align: center;
}

.text-red {
  color: var(--accent-red);
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.strong-text {
  font-weight: 700;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 100px 0;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  footer .container {
    grid-template-columns: 1fr 1fr;
  }

  .card img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  header .container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 18px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  footer .container {
    grid-template-columns: 1fr;
  }

  body {
    padding-top: 60px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-black);
  color: var(--bright-silver);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--accent-red);
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #A00824;
}

.cookie-btn-decline {
  background-color: var(--steel-gray);
  color: white;
}

.cookie-btn-decline:hover {
  background-color: #4A4A4A;
}

.cookie-btn-policy {
  background-color: transparent;
  color: var(--accent-red);
  border: 1px solid var(--accent-red);
}

.cookie-btn-policy:hover {
  background-color: var(--accent-red);
  color: white;
}

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

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}
