:root {
  --primary-color: #1a1a1a;
  --secondary-color: #ffd700;
  --accent-color: #ffc700;
  --text-color: #2d2d2d;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

* {
  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;
  background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.site-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

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

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #000000;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
}

.section-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.why-section,
.benefits-section,
.consultation-section,
.services-preview-section,
.who-section,
.testimonials-section,
.faq-section,
.content-section,
.values-section,
.philosophy-section,
.location-section,
.services-detail-section,
.process-section {
  padding: 80px 0;
}

.why-section {
  background-color: var(--bg-white);
}

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

.consultation-section {
  background-color: var(--bg-white);
}

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

.who-section {
  background-color: var(--bg-white);
}

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

.faq-section {
  background-color: var(--bg-white);
}

.feature-card,
.consultation-card,
.service-card,
.who-card,
.testimonial-card,
.value-card,
.info-box,
.contact-info-box,
.process-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.feature-card:hover,
.consultation-card:hover,
.service-card:hover,
.who-card:hover,
.value-card:hover,
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.feature-number,
.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 50%;
  margin-bottom: 1rem;
}

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

.benefits-list li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.1rem;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

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

.service-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.testimonial-card {
  border-left: 4px solid var(--secondary-color);
  font-style: italic;
}

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

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

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

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #000000 100%);
  color: var(--bg-white);
}

.cta-title {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--bg-white);
}

.page-header {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  border-bottom: 4px solid var(--secondary-color);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.3rem;
  color: var(--text-light);
}

.philosophy-text {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-detail {
  padding: 3rem 0;
}

.service-detail h2 {
  margin-bottom: 1.5rem;
}

.service-detail h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.contact-section {
  padding: 80px 0;
}

.contact-form .form-group label {
  font-weight: 600;
  color: var(--primary-color);
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

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

.contact-info-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.small-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

.thank-you-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 4rem;
  color: var(--bg-white);
  background-color: #28a745;
  border-radius: 50%;
  margin: 0 auto 2rem;
}

.next-steps {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: 8px;
}

.step-box {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  height: 100%;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.legal-content {
  padding: 80px 0;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

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

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

.site-footer {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

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

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

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

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

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

.footer-copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.footer-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.footer-note a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

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

.cookie-buttons .btn {
  white-space: nowrap;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .navbar-nav .btn {
    margin-top: 0.5rem;
    display: inline-block;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .why-section,
  .benefits-section,
  .consultation-section,
  .services-preview-section,
  .who-section,
  .testimonials-section,
  .faq-section,
  .content-section,
  .values-section,
  .philosophy-section,
  .location-section,
  .services-detail-section,
  .process-section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}
