:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --dark-color: #212529;
  --light-bg: #f8f9fa;
  --border-color: #dee2e6;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.7;
}

.top-bar {
  background-color: var(--dark-color);
  color: #fff;
  font-size: 0.875rem;
}

.top-bar-info span {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar-email {
  color: rgba(255, 255, 255, 0.8);
}

.hero-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-header .container {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-cta .btn-primary {
  background-color: #fff;
  color: var(--primary-color);
  border: none;
}

.hero-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-outline-primary {
  border-color: #fff;
  color: #fff;
}

.hero-cta .btn-outline-primary:hover {
  background-color: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.navbar {
  transition: all 0.3s ease;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

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

.content-section img {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.content-section img:hover {
  transform: scale(1.02);
}

.content-section h2 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.counters-section {
  background-color: #fff;
}

.counter-item {
  padding: 1.5rem;
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.counter-label {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .counter-number {
    font-size: 2rem;
  }
  
  .counter-label {
    font-size: 0.875rem;
  }
}

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

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-image {
  width: 100%;
  overflow: hidden;
}

.service-price {
  border-top: 2px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.price-tag {
  text-align: center;
  display: block;
}

.price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-period {
  display: block;
  font-size: 0.875rem;
  color: var(--secondary-color);
  margin-top: 0.5rem;
}

.testimonials-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonials-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.text-warning {
  color: #ffc107;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.page-header {
  padding: 3rem 0;
}

.page-header h1 {
  color: var(--dark-color);
}

.mission-content img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.error-card {
  background-color: #fff;
}

.error-card ul {
  list-style: none;
  padding-left: 0;
}

.error-card li::before {
  content: '→';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content h2 {
  color: var(--dark-color);
  font-weight: 700;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.legal-content h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.legal-content h3 {
  color: var(--dark-color);
  font-weight: 600;
}

.legal-content ul {
  margin-left: 1.5rem;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

#privacyNav .nav-link {
  color: var(--dark-color);
  padding: 0.5rem 1rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

#privacyNav .nav-link:hover,
#privacyNav .nav-link.active {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  background-color: rgba(13, 110, 253, 0.05);
}

.table th {
  background-color: var(--light-bg);
  font-weight: 600;
}

.thankyou-content .card {
  border: none;
}

.confirmation-details {
  max-width: 600px;
  margin: 0 auto;
}

.footer {
  margin-top: 4rem;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color) !important;
}

.footer-disclaimer {
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}

.cookie-banner {
  background-color: rgba(0, 0, 0, 0.95);
  color: #fff;
}

.cookie-banner h5 {
  margin-bottom: 0.5rem;
}

.cookie-banner .btn-outline-secondary {
  border-color: #fff;
  color: #fff;
}

.cookie-banner .btn-outline-secondary:hover {
  background-color: #fff;
  color: var(--dark-color);
}

@media (max-width: 991.98px) {
  .hero-header {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-cta .btn:last-child {
    margin-bottom: 0;
  }

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

  #privacyNav {
    position: static !important;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .top-bar .d-flex {
    flex-direction: column;
    text-align: center;
  }

  .top-bar-info {
    margin-bottom: 0.5rem;
  }

  .top-bar-info span {
    display: block;
    margin: 0.25rem 0;
  }
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.rounded {
  border-radius: 0.5rem;
}

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

.text-muted {
  color: var(--secondary-color) !important;
}

.border-secondary {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.badge {
  font-weight: 500;
  padding: 0.35em 0.65em;
}

.card {
  border-radius: 0.5rem;
  overflow: hidden;
}

.card-title {
  font-weight: 700;
  color: var(--dark-color);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-3 {
  font-weight: 700;
}

.display-4 {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.sticky-top {
  top: 0;
  z-index: 1020;
}

.offcanvas-body {
  padding: 1.5rem;
}

.offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.btn-close:focus {
  box-shadow: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

.text-start {
  text-align: left;
}

.text-end {
  text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }


.w-100 { width: 100%; }

.h-100 { height: 100%; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }

.text-success { color: var(--success-color); }
.text-primary { color: var(--primary-color); }

.border-0 { border: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.small {
  font-size: 0.875rem;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.text-decoration-none {
  text-decoration: none;
}

.overflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.z-index-1 {
  z-index: 1;
}

.transition-all {
  transition: all 0.3s ease;
}
