:root {
  --primary-blue: #0052a3;
  --secondary-blue: #1e5ba8;
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
  --text-gray: #555555;
  --border-light: #e0e0e0;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  color: var(--text-gray);
  background-color: var(--white);
  line-height: 1.6;
}

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

p {
  color: var(--text-gray);
}

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

a:hover {
  color: var(--secondary-blue);
  text-decoration: underline;
}

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

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

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

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

.btn-link {
  color: var(--primary-blue);
}

.btn-link:hover {
  color: var(--secondary-blue);
}

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  padding: 1rem 0;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.navbar-nav .nav-link {
  color: var(--text-gray) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

.dropdown-menu {
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  background-color: var(--light-gray);
  color: var(--primary-blue);
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.featured-categories {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.featured-categories h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.category-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

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

.category-content {
  padding: 2rem;
}

.category-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-content p {
  margin-bottom: 1.5rem;
}

.why-us {
  padding: 80px 0;
}

.why-us h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--light-gray);
  transition: background-color 0.3s ease;
}

.feature-card:hover {
  background-color: rgba(0, 82, 163, 0.08);
}

.feature-icon {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.about-content {
  padding: 80px 0;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.approach-list {
  list-style: none;
  margin-bottom: 2rem;
}

.approach-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-gray);
}

.approach-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
}

.value-item h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.contact-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.contact-cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.products-section {
  padding: 80px 0;
}

.category-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
}

.category-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.category-overlay h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.products-grid {
  padding: 80px 0;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
  overflow: hidden;
  height: 200px;
}

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

.product-content {
  padding: 1.5rem;
}

.product-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

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

.contact-section {
  padding: 80px 0;
}

.contact-info {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
}

.info-item {
  margin-bottom: 2rem;
}

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

.contact-form-wrapper {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
}

.contact-form {
  margin-top: 2rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 82, 163, 0.25);
}

.custom-control-label a {
  color: var(--primary-blue);
}

.thank-you-section {
  padding: 80px 0;
  text-align: center;
}

.thank-you-card {
  background-color: var(--light-gray);
  padding: 3rem 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.thank-you-card h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.next-steps {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: left;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.next-steps li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

.contact-quick {
  margin: 2rem 0;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.legal-content {
  padding: 80px 0;
}

.legal-text {
  max-width: 900px;
}

.legal-text h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-text ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

.site-footer {
  background-color: var(--dark-gray);
  color: var(--white);
  margin-top: 80px;
}

.footer-top {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-top p,
.footer-top a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.footer-legal {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 2rem 0;
}

.legal-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--primary-blue);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1.5rem 0;
  display: none;
}

.cookie-consent-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-message h6 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.cookie-message p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

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

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

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .featured-categories h2,
  .why-us h2,
  .contact-cta h2 {
    font-size: 2rem;
  }

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

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .legal-links {
    flex-direction: column;
    gap: 1rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }

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

@media (max-width: 576px) {
  .hero {
    padding: 40px 0;
  }

  .featured-categories,
  .why-us,
  .contact-cta,
  .products-section,
  .products-grid,
  .about-content,
  .contact-section,
  .legal-content {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .featured-categories h2,
  .why-us h2,
  .contact-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }
}
