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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3a52 !important;
}

.navbar-nav .nav-link {
  color: #333 !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #28a745;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

.btn-secondary {
  background: #fd7e14;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #e8590c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253,126,20,0.3);
}

.section {
  padding: 4rem 0;
}

.section-gray {
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a3a52;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.card-img-top {
  border-radius: 16px 16px 0 0;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a3a52;
  margin-bottom: 0.75rem;
}

.card-text {
  color: #666;
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 6px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.badge-primary {
  background: #1a3a52;
  color: #fff;
}

.badge-success {
  background: #28a745;
  color: #fff;
}

.badge-warning {
  background: #ffc107;
  color: #333;
}

.badge-info {
  background: #17a2b8;
  color: #fff;
}

.product-card {
  position: relative;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #28a745;
  margin: 1rem 0;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: 100%;
  border-left: 4px solid #28a745;
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.split-section {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.split-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}

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

.split-content {
  flex: 1;
}

.banner-section {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  margin: 2rem 0;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,58,82,0.85);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.table-responsive {
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table {
  margin-bottom: 0;
}

.table thead {
  background: #1a3a52;
  color: #fff;
}

.table tbody tr {
  transition: background 0.3s ease;
}

.table tbody tr:hover {
  background: #f8f9fa;
}

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

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 1rem;
  background: #fff;
  text-align: center;
  font-weight: 600;
  color: #1a3a52;
}

.faq-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: #1a3a52;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #666;
  font-size: 0.95rem;
}

.footer {
  background: #1a3a52;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #28a745;
}

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

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

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

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

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

.category-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.category-btn {
  padding: 0.5rem 1.5rem;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn:hover, .category-btn.active {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}

.form-control {
  border-radius: 8px;
  border: 2px solid #ddd;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40,167,69,0.25);
}

.form-group label {
  font-weight: 600;
  color: #1a3a52;
  margin-bottom: 0.5rem;
}

.legal-section {
  padding: 2rem 0;
}

.legal-section h2 {
  color: #1a3a52;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-section h3 {
  color: #1a3a52;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section p, .legal-section li {
  color: #666;
  margin-bottom: 1rem;
}

.thank-you-box {
  max-width: 600px;
  margin: 4rem auto;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thank-you-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .split-section {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
