/* Button styles */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
  }
  
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
  }
  
  .btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: transparent !important;
  }
  
  .btn-outline-primary:hover,
  .btn-outline-primary:focus,
  .btn-outline-primary:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
  }
  
  .btn-cta {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(186, 176, 120, 0.3);
    transition: all 0.3s ease;
    border: none;
  }
  
  .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 176, 120, 0.4);
  }
  
  /* CTA Sections and Boxes */
  .cta-box {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-box .btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cta-box .btn-light:hover {
    background-color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
  }
  
  .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-section .btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 25px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  .cta-section .btn-light:hover {
    background-color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Bootstrap Overrides */
  .accordion-button:not(.collapsed) {
    background-color: var(--primary-color) !important;
    color: white !important;
  }
  
  .accordion-button:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(186, 176, 120, 0.25) !important;
  }
  
  .form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(186, 176, 120, 0.25) !important;
  }
  
  .dropdown-item.active,
  .dropdown-item:active {
    background-color: var(--primary-color) !important;
  }
  
  .badge.bg-primary {
    background-color: var(--primary-color) !important;
  }
  
  .card-header.bg-primary {
    background-color: var(--primary-color) !important;
  }
  
  .page-item.active .page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
  }
  
  .page-link {
    color: var(--primary-color) !important;
  }
  
  .page-link:hover {
    color: var(--primary-dark) !important;
  }
  
  .progress-bar {
    background-color: var(--primary-color) !important;
  }
  
  /* Testimonials */
  .testimonial-card {
    border-radius: 10px;
    overflow: hidden;
  }
  
  .review-text {
    min-height: 120px;
    max-height: 200px;
    overflow-y: auto;
  }
  
  .review-text::-webkit-scrollbar {
    width: 4px;
  }
  
  .review-text::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
  
  .card .card-body {
    display: flex;
    flex-direction: column;
  }
  
  .card .text-end {
    margin-top: auto;
  }
  