.btn-outline-primary {
  color: #0a3d8f;
  border-color: #0a3d8f;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #ffffff;
  background-color: #0a3d8f;
  border-color: #0a3d8f;
}
.cookie-banner .btn-outline-primary {
  color: #8ab8ff;
  border-color: #8ab8ff;
}
.cookie-banner .btn-outline-primary:hover,
.cookie-banner .btn-outline-primary:focus {
  color: #0b0b0b;
  background-color: #8ab8ff;
  border-color: #8ab8ff;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #0b0b0b;
  color: #ffffff;
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
  background-color: #141414;
  color: #ffffff;
}
.footer-legal {
  background-color: #0e0e0e;
}
.footer h5 {
  color: #ffffff;
}
.footer .footer-brand span {
  color: #ffffff;
}

/* General section styles */
.section {
  padding: 5rem 0;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, #0a3d8f, #0066cc);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.eyebrow-light {
  background: linear-gradient(135deg, #ffb347, #ff8c00);
}

/* Header contact items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0b0b0b;
  font-size: 0.9rem;
  margin-right: 1.5rem;
}

.contact-item i {
  color: #ffb347;
}

/* Hero section */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ffb347, #ff8c00);
  color: #0b0b0b;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  position: relative;
  display: none;
}

.slide:first-child {
  display: block;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* Trust badge */
.trust-badge {
  background: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

/* Feature items */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item i {
  font-size: 1.5rem;
  color: #0a3d8f;
}

.feature-item h5 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Service cards */
.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0a3d8f, #0066cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-price {
  font-weight: 700;
  color: #0a3d8f;
  font-size: 1.1rem;
}

.service-link {
  color: #0a3d8f;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #0066cc;
}

/* Stat cards */
.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 1rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffb347;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

/* Step cards */
.step-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0a3d8f, #0066cc);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Testimonial cards */
.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: #0b0b0b;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #5c5c5c;
}

/* Partner strip */
.partner-strip {
  background: #ffffff;
  padding: 3rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

/* Pricing cards */
.pricing-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.pricing-card.featured {
  border: 2px solid #0a3d8f;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffb347, #ff8c00);
  color: #0b0b0b;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: #0a3d8f;
  margin-bottom: 1.5rem;
}

.price-value span {
  font-size: 1rem;
  color: #5c5c5c;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li i {
  color: #28a745;
}

/* Contact card */
.contact-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.map-frame {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Footer social links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* Footer links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffb347;
}

.footer-contact i {
  margin-right: 0.75rem;
  color: #ffb347;
  margin-top: 0.25rem;
}

/* Legal links */
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffb347;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  
  .trust-badge {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .legal-links {
    justify-content: center;
  }
}

/* Page hero */
.page-hero {
  position: relative;
}

/* Team cards */
.team-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.team-avatar {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card h4 {
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  padding: 0 1rem;
}

.team-role {
  color: #0a3d8f;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.team-card p {
  color: #5c5c5c;
  padding: 0 1rem 1rem;
  line-height: 1.6;
}

/* History items */
.history-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.history-item:hover {
  transform: translateX(10px);
}

.history-year {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0a3d8f, #0066cc);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.history-item h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.history-item p {
  color: #4a4a4a;
  margin: 0;
  line-height: 1.6;
}

/* Blog cards */
.blog-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

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

.blog-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-body {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #5c5c5c;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-body h3 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0b0b0b;
}

.blog-body p {
  color: #4a4a4a;
  margin: 0;
  line-height: 1.6;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
  .history-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .history-year {
    width: 60px;
    height: 60px;
    font-size: 1rem;
    margin: 0 auto;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .team-avatar {
    height: 200px;
  }
}