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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Georgia, serif;
  background-color: #F5F3F0;
  color: #3d3d3d;
  line-height: 1.6;
}

body {
  padding-top: 80px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 15px 0;
}

.navbar-brand {
  font-size: 22px;
  font-weight: 600;
  color: #D4AF37 !important;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: #3d3d3d !important;
  margin: 0 12px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #D4AF37 !important;
}

main {
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F3F0 100%);
  min-height: calc(100vh - 80px);
}

section {
  padding: 80px 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

h1 {
  font-size: 48px;
  font-weight: 300;
  color: #2a2a2a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  font-weight: 300;
  color: #2a2a2a;
  margin-bottom: 30px;
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, rgba(212, 175, 55, 0.2));
}

h3 {
  font-size: 22px;
  font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

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

a:hover {
  color: #b8932a;
}

.hero {
  background: linear-gradient(135deg, #F9F6F0 0%, #F0ECEA 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 500px;
  padding: 80px 40px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #D4AF37, #e6c74b);
  color: #ffffff !important;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  color: #ffffff;
}

.cta-text-link {
  color: #D4AF37;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cta-text-link:hover {
  color: #b8932a;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #D4AF37;
}

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

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.disclaimer-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
  border-left: 4px solid #D4AF37;
  padding: 25px;
  border-radius: 8px;
  margin: 40px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

footer {
  background: #2a2a2a;
  color: #bbb;
  padding: 50px 40px;
  font-size: 13px;
  line-height: 1.8;
  border-top: 1px solid #D4AF37;
  margin-top: 60px;
}

footer h4 {
  color: #D4AF37;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

footer a {
  color: #D4AF37;
}

footer a:hover {
  color: #e6c74b;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section p {
  color: #bbb;
  margin-bottom: 10px;
}

.footer-divider {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 20px;
  margin-top: 30px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2a2a;
  color: #bbb;
  padding: 20px 40px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #D4AF37;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #e6c74b;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2a2a2a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-submit {
  padding: 12px 28px;
  background: linear-gradient(135deg, #D4AF37, #e6c74b);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.disclaimer-important {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid #D4AF37;
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  section {
    padding: 50px 20px;
  }
  
  .two-column {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 50px 20px;
    min-height: auto;
  }
  
  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
  
  body {
    padding-top: 60px;
  }
}
