:root {
  --primary-gold: #fdd835;
  --primary-dark: #1a1a1a;
  --primary-light: #ffffff;
  --secondary-gray: #f5f5f5;
  --text-dark: #212121;
  --text-light: #666666;
  --border-light: #eeeeee;
  --success: #4caf50;
}

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

html,
body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

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

.logo-accent {
  color: var(--primary-gold);
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold) !important;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-gray) 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.btn-primary-gold {
  background-color: var(--primary-gold) !important;
  color: var(--primary-dark) !important;
  border: none !important;
  font-weight: 600;
  padding: 12px 32px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
}

.btn-primary-gold:hover {
  background-color: #fbc02d !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 216, 53, 0.3);
}

.btn-outline-dark {
  color: var(--primary-dark) !important;
  border: 2px solid var(--primary-dark) !important;
  font-weight: 600;
}

.btn-outline-dark:hover {
  background-color: var(--primary-dark) !important;
  color: var(--primary-light) !important;
}

.bg-light-gray {
  background-color: var(--secondary-gray);
}

.bg-primary-gold-light {
  background-color: rgba(253, 216, 53, 0.1);
}

.page-header {
  background: linear-gradient(135deg, var(--secondary-gray) 0%, var(--primary-light) 100%);
  border-bottom: 2px solid var(--border-light);
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
}

.page-header p {
  font-size: 1.1rem;
}

.benefit-card,
.feature-card,
.product-card,
.testimonial-card {
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card {
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(253, 216, 53, 0.15);
  transform: translateY(-4px);
}

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

.product-card {
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: 8px;
  background-color: var(--primary-light);
}

.product-card h5 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.product-card p {
  color: var(--text-light);
}

.product-card ul li {
  color: var(--text-light);
  margin-bottom: 8px;
}

.testimonial-card {
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(253, 216, 53, 0.15);
}

.stars {
  color: var(--primary-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.mission-item {
  text-align: center;
  padding: 20px;
}

.mission-icon {
  font-size: 3rem;
}

.value-list li {
  font-size: 1.1rem;
  color: var(--text-dark);
  padding-left: 20px;
}

.contact-info {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--secondary-gray);
}

.contact-form .form-control,
.contact-form .form-check-input {
  border-radius: 4px;
  border: 1px solid var(--border-light);
  padding: 12px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(253, 216, 53, 0.25);
}

.contact-form label {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.95);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(10px);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text h5 {
  color: var(--primary-gold);
  margin-bottom: 8px;
  font-size: 1rem;
}

.cookie-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

footer {
  background-color: var(--primary-dark);
  color: var(--primary-light);
  margin-top: auto;
}

footer h6 {
  color: var(--primary-gold);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: var(--primary-gold);
  text-decoration: none;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.success-icon {
  color: var(--primary-gold);
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-balance {
  text-wrap: balance;
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .hero-section {
    min-height: 400px;
    padding: 40px 0;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }

  .contact-form {
    margin-top: 30px;
  }

  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .navbar-nav {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
  }

  .nav-link {
    margin-left: 0;
    padding-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .page-header {
    padding: 20px 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .btn-primary-gold,
  .btn-lg {
    padding: 10px 24px !important;
    font-size: 1rem !important;
  }

  .row {
    margin-right: 0;
    margin-left: 0;
  }

  .col-md-3,
  .col-md-4,
  .col-md-6,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-6,
  .col-lg-8,
  .offset-lg-2 {
    padding-right: 12px;
    padding-left: 12px;
  }
}
