:root {
  --primary-blue: #1e3a8a;
  --accent-mint: #a7f3d0;
  --text-dark: #374151;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --gray-border: #e5e7eb;
}

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

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--accent-mint);
}

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--primary-blue);
  background-color: transparent;
  color: var(--primary-blue);
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: scale(1.02);
}

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

.btn-primary:hover {
  background-color: #1e40af;
  border-color: #1e40af;
  transform: scale(1.02);
}

.hero {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(167, 243, 208, 0.3)), 
              url('../images/hero-home.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 6rem 2rem;
  text-align: left;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  max-width: 600px;
}

.hero p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.search-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  max-width: 500px;
}

.search-bar input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-border);
  border-radius: 0.375rem;
  font-size: 0.95rem;
}

.search-bar button {
  padding: 0.75rem 1.5rem;
}

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

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

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

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

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

.grid-2 > * {
  min-width: 0;
}

.grid-3 > * {
  min-width: 0;
}

.grid-4 > * {
  min-width: 0;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  background-color: var(--bg-light);
  border: 1px solid var(--gray-border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
  transform: translateY(-2px);
}

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.category-card-content {
  padding: 1.5rem;
}

.category-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.category-card p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.category-card .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.product-card-content {
  padding: 1.5rem;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.product-card p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.product-card .btn {
  width: 100%;
  text-align: center;
  display: block;
}

.quick-access {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.quick-access-item {
  flex: 1;
  min-width: 150px;
  background-color: var(--accent-mint);
  color: var(--primary-blue);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-access-item:hover {
  background-color: #7ee8c3;
  transform: scale(1.05);
}

.tips-list {
  list-style: none;
}

.tips-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-border);
  padding-left: 2rem;
  position: relative;
}

.tips-list li:last-child {
  border-bottom: none;
}

.tips-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-mint);
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-section {
  margin-top: 2rem;
}

.faq-item {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0.375rem;
}

.faq-item h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.faq-item p {
  color: #6b7280;
  font-size: 0.95rem;
}

footer {
  background-color: #1f2937;
  color: #e5e7eb;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

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

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

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: #e5e7eb;
  font-size: 0.9rem;
}

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

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-border);
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

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

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 0.5rem;
}

.success-message {
  background-color: #d1fae5;
  color: #065f46;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
}

.filter-bar {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-border);
}

.filter-bar input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem;
  border: 1px solid var(--gray-border);
  border-radius: 0.375rem;
}

.filter-bar select {
  padding: 0.75rem;
  border: 1px solid var(--gray-border);
  border-radius: 0.375rem;
  background-color: var(--white);
  cursor: pointer;
}

.filter-bar label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
}

.filter-bar input[type="checkbox"] {
  cursor: pointer;
}

.category-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero {
    padding: 3rem 1rem;
    min-height: 350px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .header-container {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  nav {
    gap: 1rem;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .quick-access {
    flex-direction: column;
  }
  
  .quick-access-item {
    min-width: 100%;
  }
  
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-bar input,
  .filter-bar select {
    width: 100%;
  }
  
  .category-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.content-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.content-row img {
  max-width: 45%;
  height: auto;
  border-radius: 0.5rem;
}

.content-row-text {
  flex: 1;
}

@media (max-width: 768px) {
  .content-row {
    flex-direction: column;
  }
  
  .content-row img {
    max-width: 100%;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f2937;
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--accent-mint);
}

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

.cookie-buttons button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #1e40af;
}

.cookie-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--accent-mint);
}

.cookie-decline:hover {
  background-color: rgba(167, 243, 208, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
}

.hidden {
  display: none;
}
