:root {
  --primary-color: #2d3e50;
  --secondary-color: #f4e04d;
  --accent-color: #e8b923;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.site-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-color);
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 62, 80, 0.85), rgba(45, 62, 80, 0.6));
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--white);
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 185, 35, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.section-content {
  padding: 4rem 0;
}

.section-light {
  background-color: var(--bg-light);
  padding: 4rem 0;
}

.feature-card,
.tip-card,
.activity-card,
.age-card,
.approach-card,
.value-card,
.integration-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover,
.tip-card:hover,
.activity-card:hover,
.age-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h4,
.tip-card h5,
.activity-card h5,
.age-card h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

.faq-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
}

.faq-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #1a2a3a);
  color: var(--white);
}

.cta-section h2,
.cta-section .lead {
  color: var(--white);
}

.page-hero {
  background-color: var(--bg-light);
}

.page-hero h1 {
  color: var(--primary-color);
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.product-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.product-category {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-features {
  margin-top: 1rem;
}

.product-features .badge {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.products-filter {
  background-color: var(--bg-light);
}

.filter-buttons .btn {
  margin: 0.25rem;
}

.filter-buttons .btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.comparison-table table {
  background-color: var(--white);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
}

.tip-box {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.tip-box h5 {
  color: var(--primary-color);
}

.contact-section .contact-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border-radius: var(--border-radius);
  border: 2px solid #e0e0e0;
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(232, 185, 35, 0.25);
}

.legal-content {
  background-color: var(--white);
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

.thank-you-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.site-footer h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.site-footer a {
  color: var(--white);
  transition: var(--transition);
}

.site-footer a:hover {
  color: var(--secondary-color);
}

.site-footer ul {
  padding-left: 0;
}

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

.footer-bottom {
  padding-top: 1rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

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

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

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

.cookie-banner a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-banner .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
}

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

  .hero-content .lead {
    font-size: 1rem;
  }

  .section-content,
  .section-light {
    padding: 2rem 0;
  }

  .product-image {
    height: 200px;
  }

  .cookie-banner .col-md-4 {
    margin-top: 1rem;
  }
}
