:root {
  --primary-color: #000;
  --accent-color: #1a1a1a;
  --hover-color: #b33f2f;
  --font-family: 'DIN Condensed', Impact, sans-serif;
}


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

body {
  font-family: var(--font-family);
  background-color: #f9f9f9;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1.5;
}

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

.header {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}

.logo {
  width: 150px;
  height: auto;
}

/* Product Section */
.product {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .product {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}

.product-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.product-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.product-text {
  flex: 1;
  max-width: 500px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: #333;
}

p {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 240px;
}

button:hover {
  background-color: var(--hover-color);
  color: #fff;
}

/* Legal Pages */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  text-align: left;
}

.legal h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.legal p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.25rem;
}

.legal ul {
  margin-left: 1.25rem;
  padding-left: 1.25rem;
  list-style-type: disc;
  margin-bottom: 1.5rem;
}

.legal li {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

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

/* Footer */
.footer {
  text-align: center;
  font-size: 0.875rem;
  color: #777;
  padding-top: 3rem;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}

.footer nav {
  margin-bottom: 1rem;
}

.footer nav a {
  margin: 0 1rem;
  color: #555;
  text-decoration: none;
}

.footer nav a:hover {
  text-decoration: underline;
}

.announcement-bar {
  width: 100%;
  overflow: hidden;
  background-color: #f4efe7;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 50px;
  display: flex;
  align-items: center;
}

.ticker {
  display: flex;
  width: 100%;
}

.ticker__content {
  display: flex;
  flex-shrink: 0;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}

.ticker__content span {
  font-family: var(--font-family);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #221b14;
  padding: 0 3rem;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.95;
}

/* Slow and smooth animation */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}