:root {
  --primary-color: #1565c0;
  --primary-dark: #0d47a1;
  --primary-light: #1976d2;
  --secondary-color: #0091ea;
  --accent-color: #00b8d4;
  --text-dark: #212121;
  --text-light: #757575;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --success: #4caf50;
  --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.brand-text {
  color: var(--primary-color);
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.navbar {
  padding: 1rem 0;
}

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

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e3f2fd 0%, var(--white) 100%);
}

.hero-section h1 {
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-section .lead {
  color: var(--text-light);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

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

.feature-card {
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px var(--shadow);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-icon {
  font-size: 2.5rem;
}

.benefit-item {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px var(--shadow);
}

.benefit-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.service-card {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px var(--shadow);
}

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

.service-content {
  background: var(--white);
}

.who-card {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s ease;
}

.who-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 16px var(--shadow);
}

.testimonial-card {
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px var(--shadow);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.footer {
  background-color: #212121;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

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

.page-header {
  background: linear-gradient(135deg, #e3f2fd 0%, var(--white) 100%);
}

.value-card {
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.value-icon {
  font-size: 3rem;
}

.approach-card {
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px var(--shadow);
  height: 100%;
}

.contact-info-card {
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px var(--shadow);
}

.contact-info-box {
  background: var(--bg-light);
  border-radius: 0.75rem;
}

.office-hours-box {
  background: var(--bg-light);
  border-radius: 0.75rem;
}

.important-notice {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  border-radius: 0.5rem;
}

.map-placeholder {
  min-height: 300px;
  border: 2px dashed var(--text-light);
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(21, 101, 192, 0.25);
}

.contact-detail {
  padding: 0.5rem 0;
}

.contact-detail a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.success-icon {
  margin: 0 auto;
}

.checkmark-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--success) 0%, #66bb6a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.checkmark {
  font-size: 4rem;
  color: var(--white);
  font-weight: bold;
}

.thank-you-content {
  background: var(--bg-light);
}

.resource-card {
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px var(--shadow);
  height: 100%;
}

.policy-section h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-section h4 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

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

.contact-details {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.process-step {
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px var(--shadow);
}

.faq-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

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

.service-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 33, 33, 0.95);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px var(--shadow);
  display: none;
}

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

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-banner .btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}

.cookie-banner .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

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

  .feature-card,
  .service-card,
  .testimonial-card {
    margin-bottom: 1.5rem;
  }

  .benefit-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-right: 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px var(--shadow);
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}
