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

:root {
  --color-primary: #C41E3A;
  --color-primary-dark: #8B1428;
  --color-bg-light: #F5F1ED;
  --color-bg-dark: #FFFFFF;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #555555;
  --color-border: #E0D5CC;
  --color-accent: #D4A574;
}

body {
  font-family: 'Georgia', serif;
  background-color: var(--color-bg-light);
  color: var(--color-text-primary);
  line-height: 1.6;
}

header {
  background-color: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 1px;
}

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

nav ul {
  display: none;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.hamburger {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-primary);
}

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

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  nav ul {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-family: 'Georgia', serif;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
}

.hero {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, #FFF9F5 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: white;
}

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

.product-card {
  background-color: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-description {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  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"] {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

footer {
  background-color: #1a1a1a;
  color: white;
  padding: 3rem 1.5rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

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

.page-section {
  padding: 3rem 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.content-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

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

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

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

.feature-item p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.policy-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.policy-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

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

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

.thank-you-page {
  text-align: center;
  padding: 4rem 1.5rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-page h1 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.thank-you-page p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: white;
  padding: 1.5rem;
  display: none;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-banner p {
  font-size: 0.9rem;
  flex: 1;
  min-width: 250px;
}

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

.cookie-banner button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  font-family: 'Georgia', serif;
}

.cookie-accept {
  background-color: var(--color-primary);
  color: white;
}

.cookie-accept:hover {
  background-color: var(--color-primary-dark);
}

.cookie-reject {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.cookie-reject:hover {
  background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero {
    padding: 2rem 1.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .cookie-banner-content {
    flex-direction: column;
  }
  .cookie-banner-buttons {
    width: 100%;
  }
}
