:root {
  --primary-color: #ff8c42;
  --primary-dark: #e67a32;
  --secondary-color: #2c3e50;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
}

* {
  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-color);
  line-height: 1.6;
}

.main-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

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

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 140, 66, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  min-height: 500px;
}

.hero-image img {
  object-fit: cover;
  height: 500px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

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

.hero-overlay p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info-card,
.feature-box,
.who-card,
.mission-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.info-card:hover,
.feature-box:hover,
.who-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-card h3,
.feature-box h4,
.who-card h4,
.mission-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

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

.step-content h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.approach-point {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.approach-point h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

.faq-item {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
}

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

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

.page-hero {
  padding: 4rem 0;
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
}

.contact-info-box,
.contact-hours-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.contact-info-box h3,
.contact-hours-box h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
  border-bottom: none;
}

.info-list .info-item {
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

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

.thank-you-section {
  min-height: 400px;
  display: flex;
  align-items: center;
}

.thank-you-content {
  padding: 3rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.next-step-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.step-number-circle {
  background: var(--primary-color);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
}

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

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.legal-section h4 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

.principle {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.principle h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.education-content {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.main-footer {
  background: var(--secondary-color);
  color: var(--white);
  margin-top: 4rem;
}

.main-footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

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

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--primary-color);
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

@media (max-width: 768px) {
  .hero-image img {
    height: 400px;
  }

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

  .process-step {
    flex-direction: column;
  }

  .cookie-banner .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}
