 :root {
     --primary-navy: #0A2342;
     --accent-teal: #13887D;
     --secondary-orange: #E85D04;
     --neutral-bg: #F7F8FA;
     --body-text: #1C1C1C;
     --white: #ffffff;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: var(--body-text);
     padding-top: 76px;
 }

 .mobile-drawer {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: #fff;
     z-index: 1050;
     transform: translateY(-100%);
     transition: transform 0.3s ease-in-out;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
 }

 .mobile-drawer.open {
     transform: translateY(0);
 }

 /* Header Styles */
 .navbar {
     background-color: var(--primary-navy) !important;
     padding: 0.75rem 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand {
     font-size: 1.8rem;
     font-weight: bold;
     color: var(--white) !important;
 }

 .mobile-drawer {
     background-color: var(--primary-navy) !important;
     color: white;
 }

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

 .navbar-nav .nav-link:hover {
     color: var(--secondary-orange) !important;
 }

 .navbar-toggler {
     border-color: var(--accent-teal);
 }


 .navbar-toggler-icon {
     color: white;
     /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); */
 }

 .header-contact {
     color: var(--white);
     text-decoration: none;
     font-weight: 600;
 }

 .header-contact:hover {
     color: var(--accent-teal);
 }

 .header-actions {
     background-color: var(--white);
 }

 .header-actions>.cta-button {
     margin: 10px;
     border-radius: 10px !important;
     padding: 10px 20px;
     text-align: center;
 }

 .header-actions>.cta-button-white {
     margin: 10px;
     border-radius: 10px !important;
     padding: 10px 20px;
     text-align: center;
     border: 2px solid var(--accent-teal);
 }

 /* Search Bar Styles */
 #mobileSearch {
     position: fixed !important;
     top: 70px;
     left: 20px;
     right: 20px;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     border-radius: 15px;
     padding: 15px;
     transform: translateY(-20px);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     z-index: 9999 !important;
     max-width: calc(100vw - 40px);
     border: 2px solid var(--accent-teal, #20B2AA);
     z-index: 1100;
 }

 /* Show state for search bar */
 #mobileSearch.show {
     transform: translateY(0);
     opacity: 1;
     visibility: visible;
 }

 /* Search highlight styles */
 .search-highlight {
     background-color: yellow;
     padding: 2px 4px;
     border-radius: 3px;
     font-weight: bold;
 }

 .search-highlight.active {
     background-color: orange;
     box-shadow: 0 0 8px rgba(255, 165, 0, 0.6);
 }

 /* Search button styles */

 .search-button:hover {
     background: var(--accent-teal-dark, #188B8B);
     transform: translateY(-1px);
 }

 /* Mobile adjustments */
 @media (max-width: 991px) {
     #mobileSearch {
         top: 60px;
         left: 10px;
         right: 10px;
     }

     body {
         padding-bottom: 50px;
     }
     .hero{
            height:100% !important;
     }
     .stat-item{
        width:100%;
        height:100%;
     }
 }

 .cta-button {
     background-color: var(--secondary-orange);
     color: var(--white);
     padding: 0.75rem 1.5rem;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     border: none;
 }


 /* .cta-button:hover {
     background-color: var(--accent-teal);
     transform: translateY(-2px);
     color: var(--white);
 } */
 .cta-button-white {
     background-color: var(--white);
     color: var(--accent-teal);
     padding: 0.875rem 2rem;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     border: none;
 }

 .cta-button-white:hover {
     background-color: var(--accent-teal);
     transform: translateY(-2px);
     color: var(--white);
 }

 .search-button {
     background: rgba(255, 255, 255, 0.2);
     border: none;
     color: white;
     padding: 10px 15px;
     border-radius: 25px;
     cursor: pointer;
     backdrop-filter: blur(10px);
     margin-right: 10px;
 }


 /* Mobile CTA Banner */
 .mobile-cta-banner {
     background: linear-gradient(135deg, var(--secondary-orange), #d44d02);
     color: var(--white);
     padding: 0.5rem 0;
     text-align: center;
     display: none;
     /* margin-top: 20px; */
 }

 .mobile-cta-banner .btn {
     color: var(--white);
     /* color: var(--secondary-orange); */
     font-weight: 600;
     border-radius: 20px;
     padding: 0.5rem 1rem;
     text-decoration: none;
     font-size: 0.9rem;
 }

 /* Trust Banner Carousel */
 .trust-banner {
     background: linear-gradient(135deg, var(--accent-teal), #16a085);
     color: var(--white);
     padding: 0.75rem 0;
 }

 .carousel-item {
     text-align: center;
     padding: 0.5rem;
 }

 .trust-item {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     font-weight: 600;
     white-space: nowrap;
     padding-left: 20px;
     border-left: 1px solid var(--white);
 }

 .trust-badge {
     background: rgba(255, 255, 255, 0.1);
     padding: 1rem 1.5rem;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 500;
     border: 1px solid rgba(255, 255, 255, 0.2);
     display: flex;
     align-items: center;
     gap: 0.5rem;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
 }

 .trust-badge:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: translateY(-2px);
     box-shadow: var(--shadow-light);
 }

 .hero {
     background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
         url("./assets/evictionHelpBg.avif") center/cover no-repeat;
     color: var(--white);
     display: flex;
     align-items: center;
     padding: 1rem 0;
     position: relative;
     padding-top: 5rem;
 }
 .section-flex {
  display: flex; /* allows stacking on small screens */
  gap: 2rem;       /* space between columns */
}

.section-left,
.section-right {
  flex: 1 1 50%;   /* 1:1 ratio */
  min-width: 300px; /* ensures they don’t shrink too small */
}
.hero  .section-right {
  display: flex;
  justify-content: end !important; /* horizontal center */
  align-items: center;     /* vertical center */
}
.contact-form {
  width: 100%;       /* or max-width: 500px; if you want a fixed form width */
}


 .hero h1 {
     font-size: clamp(1.5rem, 4vw, 2.2rem);
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 1rem;
     background: linear-gradient(135deg, var(--white), #e8e8e8);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero .subtitle {
     font-size: clamp(1rem, 2.5vw, 1.2rem);
     margin-bottom: 0.75rem;
     color: var(--accent-teal);
     font-weight: 600;
 }

 .hero .description {
     font-size: clamp(0.9rem, 2vw, 1rem);
     margin-bottom: 1.75rem;
     opacity: 0.9;
     line-height: 2;
 }

 /* Compact stats grid */
 .hero-stats {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     /* gap: 1rem; */
     margin: 1rem 0;
     margin-top:6rem;
     
 }

 .stat-item {
     text-align: center;
     background: rgba(255, 255, 255, 0.1);
     padding: 0.5rem;
     border-radius: 8px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
     height:100px;
     width:90%;
     text-align: center;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 .stat-item:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: translateY(-2px);
 }

 .stat-number {
     font-size: clamp(1.2rem, 3vw, 1.6rem);
     font-weight: bold;
     color: var(--accent-teal);
     line-height: 1;
 }

 .stat-text {
     font-size: clamp(0.7rem, 1.5vw, 0.8rem);
     opacity: 0.8;
     margin-top: 0.2rem;
 }

 /* Compact contact form */
 .contact-form {
     background-color: var(--white);
     padding: 1.5rem;
     /* border-radius: 12px; */
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     height: fit-content;
     /* max-width: 450px; */
     /* max-height: calc(100vh - 200px);
            overflow-y: auto; */
 }

 .contact-form h3 {
     color: var(--primary-navy);
     margin-bottom: 1rem;
     font-size: 1.3rem;
     text-align: center;
 }

 .form-label {
     color: var(--primary-navy);
     font-weight: 600;
     margin-bottom: 0.3rem;
     font-size: 0.9rem;
 }

 .form-control,
 .form-select {
     border: 2px solid #e9ecef;
     border-radius: 6px;
     transition: border-color 0.3s ease;
     font-size: 0.9rem;
     padding: 0.5rem 0.75rem;
 }

 .form-control:focus,
 .form-select:focus {
     border-color: var(--accent-teal);
     box-shadow: 0 0 0 0.2rem rgba(19, 136, 125, 0.25);
 }

 .submit-btn {
     background: linear-gradient(135deg, var(--accent-teal), #0f6b5e);
     border: none;
     color: white;
     padding: 0.75rem 1.5rem;
     border-radius: 8px;
     font-weight: 600;
     transition: all 0.3s ease;
     font-size: 1rem;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(19, 136, 125, 0.3);
 }
 .parent-div{
    display: flex;
    justify-content: center;
    align-items: center;
 }

 /* Responsive adjustments */
 @media (max-width: 992px) {
    .parent-div{
        display: block;
    }
     .hero {
         min-height: auto;
         padding: 1.5rem 0;
     }

     .hero-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 0.75rem;
         margin: 1rem 0;
         justify-items: center;
          max-width:100%;
     }

     .contact-form {
         margin-top: 1rem;
         max-height: none;
     }

     .trust-item {
         border-left: none;
     }
      .contact-form {
          max-width: 100%;
     margin-left:0
      }
 }

 @media (max-width: 768px) {
    .section-flex{
        display: block;
    }
    .section-left .section-right{
        width:100%;
        min-width: none !important;
    }
    .hero-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 0.75rem;
         margin: 1rem 0;
         justify-items: center;
          max-width:100%;
     }


     .social-icons{
          align-items: center;
          margin-top:0rem !important;
          margin-bottom: 1rem !important;
     }
 }

 @media (max-width: 576px) {
     .hero {
         padding: 1rem 0;
     }

     .contact-form {
         padding: 1rem;
     }

     .hero-stats {
         grid-template-columns: repeat(1, 1fr);
         gap: 0.75rem;
         margin: 1rem 0;
         justify-items: center;
          max-width:100%;
     }
 }

 /* Compact form spacing */
 .mb-3 {
     margin-bottom: 0.75rem !important;
 }

 .form-check {
     font-size: 0.8rem;
     margin-bottom: 1rem;
 }

 textarea.form-control {
     resize: vertical;
     min-height: 60px;
 }

 .lawyer-profile {
     background: linear-gradient(135deg, var(--accent-teal), #0A2342);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     padding: 10px 40px;
     margin: 20px 0;
     animation: fadeInUp 0.6s ease-out 0.5s both;
     /* min-height: 80vh; */
 }

 .lawyer-header {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 24px;
          font-size: 1.8rem;
          justify-content: center;
 }

 .lawyer-image {
     width: 200px;
     height: 200px;
     border-radius: 50%;
     background: var(--accent-teal);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     color: var(--white);
     border: 3px solid var(--white);
     flex-shrink: 0;
     position: relative;
     overflow: hidden;
 }

 .lawyer-info h3 {
     font-size: 1.5rem;
     color: var(--white);
     margin-bottom: 5px;
     font-weight: 700;
     text-align: center;
 }

 .lawyer-title {
     color: var(--white);
     font-size: 1rem;
     font-weight: 600;
     text-align: center;
 }

 .lawyer-highlights {
     list-style: none;
     margin-bottom: 24px;
 }

 .lawyer-highlights li {
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 8px;
     position: relative;
     padding-left: 20px;
     font-size: 1rem;
 }

 .lawyer-highlights li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--accent-teal);
     font-weight: bold;
 }

 .quote {
     font-style: italic;
     color: rgba(255, 255, 255, 0.95);
     font-size: 1.1rem;
     line-height: 1.6;
     border-left: 4px solid var(--secondary-orange);
     padding-left: 20px;
     margin-top: 20px;
 }

 /* Cards */
 .card-modern {
     background-color: var(--white);
     border-radius: 12px;
     text-align: start;
     /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
     /* transition: transform 0.3s ease; */
     position: relative;
     border: 2px solid var(--accent-teal)
 }


 .warning-card {
     background: #fff5f5;
     border: 1px solid #fecaca;
     border-left: 6px solid var(--secondary-orange);
     border-radius: 12px;
     padding: 1rem;
     margin: 2rem 0;
  height: 100%;       /* Let height adapt */
  max-height: 175px;
     /* min-width: 270px; */
 }

 .warning-card-red {
     background: #fff5f5;
     border: 1px solid #fecaca;
     border-left: 6px solid var(--secondary-orange);
     border-radius: 12px;
     padding: 2rem;
     margin: 2rem 0;
 }

 .warning-card h3 {
     color: var(--secondary-orange);
 }

 .section-highlight  {
    padding: 2rem 0;
     background: linear-gradient(135deg, var(--accent-teal), #0A2342);
     color: var(--white);
 }

 /* Services Section */
 .services-section {
     padding: 1rem 0;
     background-color: var(--white);
 }

 .section-title {
     text-align: center;
     font-size: 2.5rem;
     color: var(--primary-navy);
     margin-bottom: 0.5rem;
 }

 .section-subtitle {
     font-size: 1.2rem;
     color: var(--body-text);
     margin-bottom: 3rem;
 }


 .service-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1rem;
     margin-top: 2rem;
     justify-items: center;
 }
 .warning-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 0.5rem;
     margin-top: 1rem;
     /* justify-items: center; */
 }

 .service-card {
     background-color: var(--white);
     border: 2px solid var(--accent-teal);
     border-radius: 12px;
     padding: 1rem;
     text-align: center;
     transition: all 0.3s ease;
     min-height: 300px;
     max-width:250px;
 }

 .service-card:hover {
     background-color: var(--accent-teal);
     color: var(--white);
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

     .service-icon {
         color: var(--white);
     }
 }

 .service-icon {
     font-size: 3rem;
     color: var(--accent-teal);
     margin-bottom: 1rem;
 }

 .service-card h4 {
     color: var(--primary-navy);
     margin-bottom: 1rem;
 }

 /* Pricing Section */
 .pricing-section {
     padding: 1rem 0;
     background-color: var(--white);
     min-height: 500px;
     margin-bottom: 2rem;
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .pricing-card {
     background-color: var(--white);
     border-radius: 12px;
     padding: 2rem;
     text-align: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     position: relative;
     transition: transform 0.3s ease;
     display: flex;
     flex-direction: column;
     /* stack children vertically */
     justify-content: space-between;
     min-height:350px;
     height: 100%;
     /* allow equal height in grid/flex container */
     box-sizing: border-box;
 }

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

 .pricing-card.popular {
     border: 2px solid var(--secondary-orange);
     transform: scale(1.05);
 }

 .popular-badge {
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background-color: var(--secondary-orange);
     color: var(--white);
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 600;
 }

 .price-title {
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--primary-navy);
     margin-bottom: 0.5rem;
 }

 .price-subtitle {
     color: var(--body-text);
     /* margin-bottom: 1.5rem; */
     flex-grow: 1;
     /* takes up the flexible middle space */
     margin: 1rem 0;
 }

 .pricing-btn {
     background-color: var(--accent-teal);
     color: var(--white);
     padding: 0.75rem 1.5rem;
     border: none;
     border-radius: 6px;
     font-weight: 600;
     cursor: pointer;
     transition: background-color 0.3s ease;
     text-decoration: none;
     display: inline-block;
     align-self: center;
     /* or flex-end / center, depending on alignment you want */
     margin-top: auto;
 }

 .pricing-btn:hover {
     background-color: #0f6b63;
     color: var(--white);
 }

 .process-section {
    padding: 2rem 0;
    background-color: var(--neutral-bg);
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.process-card {
    flex: 0 0 auto;
    width: 200px;
    min-height: 180px;
    background: white;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0; /* Remove Bootstrap margins */
}

.process-number {
    width: 40px;
    height: 40px;
    background:var(--accent-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.process-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.process-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

.process-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.process-arrow img {
    height: 30px;
    width: auto;
    opacity: 0.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-card {
        width: 100%;
        max-width: 300px;
    }
    
    .process-arrow {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .process-flow {
        gap: 0.8rem;
    }
    
    .process-card {
        width: 180px;
        min-height: 160px;
    }
    
    .process-arrow img {
        height: 25px;
    }
}
 .section-subtitle {
     font-size: 1.2rem;
     color: var(--body-text);
     margin-bottom: 3.5rem;
     margin-top:8px;
 }


 /* Why Choose Us Section */
 .why-choose-section  {
     padding: 2rem 0;
     background: linear-gradient(135deg, var(--primary-navy), #1a3a5c);
     color: var(--white);
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-top: 2rem;
 }

 .feature-card {
     text-align: center;
     padding: 1rem;
 }

 .feature-icon {
     font-size: 3rem;
     color: var(--accent-teal);
     margin-bottom: 0.5rem;
 }

 .feature-card h4 {
     margin-bottom: 1rem;
     font-size: 1.3rem;
 }

 /* Contact Form
 .contact-form {
     background-color: var(--white);
     padding: 1rem;
     border-radius: 12px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }

 .contact-form h3 {
     color: var(--primary-navy);
     margin-bottom: 1.5rem;
     font-size: 1.5rem;
     text-align: center;
 } */

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     color: var(--primary-navy);
     font-weight: 600;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 0.75rem;
     border: 2px solid var(--border-color);
     border-radius: 6px;
     font-size: 1rem;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--accent-teal);
 }

 .submit-btn {
     width: 100%;
     padding: 1rem;
     background-color: var(--secondary-orange);
     color: var(--white);
     border: none;
     border-radius: 6px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .submit-btn:hover {
     background-color: #d44d02;
     transform: translateY(-2px);
 }



 /* Icons */
 .check-icon {
     background: var(--accent-teal);
     color: white;
     width: 24px;
     height: 24px;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     flex-shrink: 0;
     margin-right: 0.5rem;
 }

 .cross-icon {
     background: var(--secondary-orange);
     color: white;
     width: 24px;
     height: 24px;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     flex-shrink: 0;
     margin-right: 0.5rem;
 }

 .cross-icon-red {
     background: red;
     color: white;
     width: 24px;
     height: 24px;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     flex-shrink: 0;
     margin-right: 0.5rem;
 }

 .checklist {
     /* list-style: disc; */
     padding-left: 0;
     margin-top: 1rem;
 }

 .checklist li {
     display: flex;
     align-items: flex-start;
     margin-bottom: 2rem;
 }

 /* FAQ */
 .faq-item {
     border: 1px solid #e9ecef;
     border-radius: 8px;
     margin-bottom: 1rem;
     overflow: hidden;
 }

 .faq-question {
     background: var(--primary-navy);
     color: white;
     padding: 1rem;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background-color 0.3s ease;
 }

 .faq-question:hover {
     background: #0d2a4a;
 }

 .faq-answer {
     padding: 1rem;
     background: white;
     display: none;
 }

 .faq-answer.show {
     display: block;
 }

 .fixed-cta {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: var(--accent-teal);
     /* teal-like background */
     z-index: 9999;
     /* height: 70px; */
 }

 .cta-nav {
     display: flex;
     justify-content: space-between;
     text-align: center;
 }

 .cta-button-nav {
     flex: 1;
     padding: 0.6rem;
     color: white;
     /* black text/icons */
     text-decoration: none;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     font-weight: 600;
     font-size: 0.75rem;
     background: var(--accent-teal);
     /* same background */
 }

 .cta-button-nav:not(:last-child) {
     border-right: 1px solid #000;
     /* black divider */
 }

 .cta-button-nav i {
     font-size: 0.95rem;
     margin-bottom: 0.25rem;
     color: var(--secondary-orange);
 }


 .non-tenant-section {
     /* background: var(--white); */
     padding: 40px 20px;
     /* border-radius: 30px; */
     margin: 40px 0;
     /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1); */
     position: relative;
 }

 /* .non-tenant-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 6px;
     background: var(--accent-teal);
     border-radius: 30px 30px 0 0;

 } */

 .non-tenant-title {
     font-size: 2.2rem;
     color: var(--primary-navy);
     margin-bottom: 30px;
     text-align: center;
 }

 .cta-subtext {
     font-size: 0.95rem;
     color: var(--white);
     margin-top: 25px;
     font-weight: 500;
 }

 /* Mobile Styles */
 @media (max-width: 768px) {
     body {
         padding-top: 56px;
     }

     .navbar-brand {
         font-size: 1.25rem;
     }

     .mobile-cta-banner {
         display: block;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .search-button {
         background: none;
     }

     .lawyer-header {
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }


     .cta-subtext {
         font-size: 0.9rem;
         line-height: 1.5;
     }

     .icoLogo {
         margin-top: 20px;
     }

     .footer-bottom {
         font-size: 12px !important;
     }

     .non-tenant-section {
         padding: 20px 10px;
     }

     .trust-banner {
        top:120px;
         padding: 5px;
     }

     .trust-banner .d-none.d-md-block {
         display: none !important;
     }

     .trust-banner .d-md-none {
         display: block !important;
     }

     /* .accelerated-grid {
         display: flex;
         flex-direction: column;
         gap: 20px;
         margin-top: 10px;
     } */
       .warning-grid {
         justify-items: center;
       }
        .warning-card {
         height: 300px;
         margin: 10px;
     }
      .service-card{
        max-width:300px;
      }
       .process-card {
         max-width:350px;
       }

     .accelerated-card,
     .restrictions-card {
         margin-bottom: 20px;
     }

     .header-actions>.cta-button-white {
         margin: 8px;
         border-radius: 10px !important;
         padding: 8px 15px;
         text-align: center;
         font-size: 0.75rem;
     }

     .header-actions>.cta-button {
         margin: 8px;
         border-radius: 10px !important;
         padding: 12px 20px;
         text-align: center;
         font-size: 0.9rem;
     }

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

 @media (min-width: 769px) {
     .trust-banner .d-md-none {
         display: none !important;
     }

     .trust-banner .d-none.d-md-block {
         display: block !important;
     }
 }

 /* Footer */
 footer {
     background: var(--primary-navy);
     color: white;
     padding: 40px 0;
     /* margin-bottom: 30px; */
 }

 footer a {
     color: #ffe5cc;
     text-decoration: none;
 }

 footer a:hover {
     color: white;
     text-decoration: underline;
 }

 .small {
     width: 100%;
 }

 @media (min-width: 992px) {

     /* lg and above */
     .small {
         max-width: 400px;
     }
 }

 .icoLogo {
     display: inline-flex;
     /* keeps box tight around logo */
     justify-content: center;
     align-items: center;
     background: #ffffff;
     /* white background */
     /* rounded corners */
     /* space inside the box */
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
     /* soft shadow */
     width: 200px;

 }

 .icoLogo img {
     max-width: 100%;
     height: auto;
     display: block;
     width: 150px;
     height: 100px;
 }

 .top-rated-badge {
     background: white;
     color: var(--primary-navy);
     padding: 0.75rem 1.5rem;
     border-radius: 25px;
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     margin-bottom: 1.5rem;
     border: 2px solid rgba(208, 123, 57, 0.2);
     font-weight: 600;
 }

 .footer-link {
     color: var(--text-muted);
     transition: all 0.3s ease;
     display: inline-block;
     margin-bottom: 0.5rem;
     font-size: 0.9rem;
     text-decoration: none;
 }

 .footer-link:hover {
     color: var(--text-light) !important;
     transform: translateX(5px);
     text-decoration: underline !important;
 }

 .info-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     /* 4 cards in a row for large screens */
     gap: 35px;
     /* space between cards */
     margin-top: 20px;
 }

 .info-card {
     background: #fff;
     border-radius: 12px;
     padding: 20px;
     max-width:250px;
     height:100%;
     box-shadow: 0 -2px 6px rgba(0,0,0,0.1),   /* top */
              2px 0 6px rgba(0,0,0,0.1);    /* right */
     /* transition: transform 0.2s ease; */
 }
 .form-info-card{
     background: #fff;
     border-radius: 12px;
     padding: 20px;
     height:100%;
     box-shadow: 0 -2px 6px rgba(0,0,0,0.1),   /* top */
              2px 0 6px rgba(0,0,0,0.1);    /* right */
     /* transition: transform 0.2s ease; */
 }


 /* Medium & small screens: 2 per row */
 @media (max-width: 992px) {
     .info-grid {
         grid-template-columns: repeat(2, 1fr);
         justify-items: center;
     }
 }

 /* Extra small screens: 1 per row */
 @media (max-width: 576px) {
     .info-grid {
         grid-template-columns: 1fr;
     }
 }

 .info-card {
     /* background: var(--neutral-bg); */
     padding: 30px;
     border-radius: 15px;
     /* border-left: 4px solid var(--accent-teal); */
 }

 .info-card h4 {
     color: var(--primary-navy);
     margin-bottom: 15px;
     font-size: 1.2rem;
 }

 .info-card p {
     color: #666;
     line-height: 1.6;
 }

 .rental-section {
     max-width: 1200px;
     margin: 0 auto;
 }

 .rental-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: start;
 }

 /* Info Box Styling */
 .info-box {
     border-radius: 20px;
     position: relative;
     overflow: hidden;
     margin-left:-50px;
 }

 .info-box h4 {
     display: flex;
     align-items: center;
     color: var(--accent-teal);
     font-size: 1.5rem;
     margin-bottom: 25px;
     font-weight: 600;
 }

 .info-box i {
     margin-right: 15px;
     font-size: 1.8rem;
 }

 .info-box ul {
     padding: 0;
     margin-left: 1.5rem;
 }

 .info-box li {
     margin-bottom: 15px;
     color: #374151;
     line-height: 1.6;

 }

 /* Warning Section Styling */
 .warning-section {
     padding: 20px;
     border-radius: 20px;
     position: relative;
     overflow: hidden;
     margin-left: -60px;
     margin-top:60px;
 }

 .warning-title {
     display: flex;
     align-items: center;
     color: #dc2626;
     font-size: 1.5rem;
     margin-bottom: 25px;
     font-weight: 600;
 }

 .warning-title i {
     margin-right: 15px;
     font-size: 1.8rem;
 }

 .warning-list {
     list-style: none;
     padding: 20px;
 }

 .warning-list li {
     display: flex;
     align-items: flex-start;
     margin-bottom: 15px;
     color: #7f1d1d;
     line-height: 1.6;
     font-weight: 500;
 }

 .warning-list li i {
     color: #ef4444;
     margin-right: 12px;
     margin-top: 4px;
     font-size: 1rem;
 }

 /* Experience Cards */
 .experience-cards {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .experience-card {
     background: linear-gradient(135deg, var(--white), var(--neutral-bg));
     padding: 35px;
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
     border: 1px solid rgba(19, 136, 125, 0.1);
     position: relative;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .experience-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
 }

 .experience-card::before {
     content: '"';
     position: absolute;
     top: 20px;
     left: 30px;
     font-size: 4rem;
     color: var(--accent-teal);
     opacity: 0.3;
     font-family: Georgia, serif;
 }

 .experience-card h3 {
     color: var(--primary-navy);
     margin-bottom: 20px;
     font-size: 1.3rem;
     margin-left: 30px;
     font-weight: 600;
 }

 .experience-card p {
     color: #555;
     line-height: 1.7;
     margin-left: 30px;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .rental-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .info-box,
     .warning-section,
     .experience-card {
         padding: 25px;
     }

     .info-box h4,
     .warning-title {
         font-size: 1.3rem;
     }

     .experience-card h3 {
         font-size: 1.2rem;
         margin-left: 20px;
     }

     .experience-card p {
         margin-left: 20px;
     }

     .experience-card::before {
         font-size: 3rem;
         left: 20px;
     }
      .info-box {
         margin-left: 0;
     }
      .warning-section {
         margin-left: 0;
      }
      .content-side-img{
        margin-top:20px !important;
        /* padding-top: 20px; */
      }
 }

 .section-21-section {
     margin: 40px 20px;
 }

 .section-description {
     font-size: 1.2rem;
     color: #666;
     /* max-width: 600px; */
     margin: 30px auto;
 }

 /* .accelerated-grid {
     display: flex;
     justify-content: space-between;
        gap: 20px;
 } */

 .accelerated-card,
 .restrictions-card {
     /* background: var(--white); */
     /* border-radius: 20px; */

     /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
     transition: all 0.3s ease;
     /* border: 1px solid rgba(19, 136, 125, 0.1); */
     position: relative;
     overflow: hidden;
 }

 /* .accelerated-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     background: linear-gradient(90deg, #4caf50, #8bc34a);
 } */

 /* .restrictions-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     background: linear-gradient(90deg, #ff5722, #f44336);
 } */

 /* .accelerated-card:hover,
 .restrictions-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
 } */

 .card-icon.warning {
     color: var(--secondary-orange);
 }

 .lead-text {
     font-size: 1.1rem;
     color: #555;
     margin-bottom: 25px;
     line-height: 2;
 }

 .benefits-list,
 .restrictions-list {
     /* margin: 15px 0; */
 }

 .benefit-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 15px;
     /* padding: 12px; */
     /* background: rgba(76, 175, 80, 0.05); */
     border-radius: 10px;
     /* border-left: 3px solid #4caf50; */
 }

 .benefit-item i {
     color: var(--accent-teal);
     margin-right: 12px;
     margin-top: 2px;
     font-size: 1.1rem;
 }

 .restriction-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 20px;
     /* padding: 15px; */
     /* background: rgba(255, 87, 34, 0.05); */
     border-radius: 10px;
     /* border-left: 3px solid #ff5722; */
 }

 .restriction-icon {
     margin-right: 15px;
     margin-top: 2px;
 }

 .restriction-icon i {
     color: #f44336;
     font-size: 1.2rem;
 }

 .restriction-text strong {
     color: var(--primary-navy);
     display: block;
     margin-bottom: 5px;
     font-size: 1rem;
 }

 .restriction-text p {
     margin: 0;
     color: #666;
     line-height: 1.5;
 }

 .important-note {
     display: flex;
     align-items: flex-start;
     background: rgba(255, 193, 7, 0.1);
     padding: 15px;
     border-radius: 12px;
     border-left: 4px solid #ffc107;
     margin-top: 40px;
 }

 .important-note i {
     color: #ff9800;
     margin-right: 12px;
     margin-top: 2px;
     font-size: 1.2rem;
 }

 .important-note p {
     margin: 0;
     color: #666;
     line-height: 1.6;
 }

 .warning-text {
     font-size: 1.1rem;
     color: #d32f2f;
     margin-bottom: 20px;
     font-weight: 500;
 }

 .conclusion-box {
     /* background: linear-gradient(135deg, var(--neutral-bg), var(--white)); */
     /* padding: 25px; */
     border-radius: 15px;
     margin-top: 25px;
     /* border: 2px solid var(--accent-teal); */
     display: flex;
     align-items: flex-start;
 }

 .conclusion-icon {
     margin-right: 15px;
     margin-top: 2px;
 }

 .conclusion-icon i {
     color: var(--accent-teal);
     font-size: 1.5rem;
 }

 .conclusion-box p {
     margin: 0;
     color: var(--primary-navy);
     font-weight: 500;
     line-height: 1.6;
 }

 /* === Section Layout === */
.cta-form {
     width: 100%;
     padding: 20px 30px;
     border-radius: 10px;
     border: 1px solid var(--accent-teal);
     margin: 0 auto;
 }

 /* Download CTA */
 .cta-highlight {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 1rem;
     font-weight: 600;
     color: var(--accent-teal, #13887d);
     background: rgba(19, 136, 125, 0.08);
     padding: 12px 16px;
     border-radius: 12px;
     margin-bottom: 20px;
 }

 .cta-highlight a {
     color: inherit;
     text-decoration: none;
 }

 .cta-highlight a:hover {
     text-decoration: underline;
 }
 .section-right >.content-side-img{
    display: flex;
    justify-content: center;
    align-items: center;
 }

 .content-side-img {
     width: 100%;
     min-width: 200px;
     max-width: 420px;
     object-fit: cover;
     object-position: top center;
     border-radius: 12px;
     border: 1px solid rgba(19, 136, 125, 0.1);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
     margin: 0 auto;
 }


 /* Form Elements */
 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     font-size: 0.95rem;
     font-weight: 600;
     margin-bottom: 6px;
     color: var(--heading-text, #0a233f);
 }

 .form-group .required {
     color: #d9534f;
 }

 .form-group .optional {
     font-size: 0.85rem;
     font-weight: 400;
     color: #888;
 }

 .form-group input {
     width: 100%;
     padding: 12px 14px;
     border: 1px solid #ddd;
     border-radius: 10px;
     font-size: 0.95rem;
     transition: border 0.2s ease;
 }

 .form-group input:focus {
     border-color: var(--accent-teal, #13887d);
     outline: none;
     box-shadow: 0 0 0 3px rgba(19, 136, 125, 0.15);
 }

 /* Buttons */
 .primary-cta {
     display: inline-block;
     width: 100%;
     padding: 14px;
     background: var(--accent-teal, #13887d);
     color: #fff;
     font-size: 1rem;
     font-weight: 600;
     border: none;
     border-radius: 12px;
     cursor: pointer;
     transition: background 0.3s ease;
     margin-top: 8px;
 }

 .primary-cta:hover {
     background: #0f6f66;
 }

 .secondary-cta {
     margin-top: 16px;
     font-size: 0.9rem;
     text-align: center;
     color: var(--body-text, #555);
 }

 .secondary-cta a {
     color: var(--accent-teal, #13887d);
     text-decoration: none;
     font-weight: 600;
 }

 .secondary-cta a:hover {
     text-decoration: underline;
 }

 /* Reinforcement Note */
 .reinforcement {
     margin-top: 8px;
     display: flex;
     gap: 10px;
     align-items: flex-start;
     font-size: 0.9rem;
     color: var(--body-text, #444);
     background: rgba(19, 136, 125, 0.06);
     padding: 12px 16px;
     border-radius: 10px;
 }

 /* === Responsive === */
 @media (max-width: 900px) {
     .download-form-section {
         flex-direction: column;
         padding: 24px;
     }

     .form-side {
         width: 100%;
     }

     .content-side img {
         max-width: 100%;
     }

     .content-side {
         display: block;
     }
 }

 /* ===== Defences Section Styling ===== */
 .defences-section {
     padding: 2rem 1.5rem;
     background: #f9fafb;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     margin: 0.5rem 0;
     font-family: 'Segoe UI', Tahoma, sans-serif;
 }

 .section-header {
     text-align: center;
     margin-bottom: 2rem;
 }

 .section-title {
     font-size: 1.8rem;
     font-weight: 700;
     color: #1f2937;
     margin-bottom: 0.5rem;
 }

 .section-title i {
     color: #2563eb;
     /* blue shield icon */
 }

 .section-description {
     color: #4b5563;
     font-size: 1rem;
     margin: 30px auto;
 }

 /* ===== Table Styling ===== */
 .defences-table-container {
     overflow-x: auto;
 }

 .eviction-table {
     width: 100%;
     border-collapse: separate;
     background: #ffffff;
     border-radius: 10px;
     overflow: hidden;
     border: 2px solid #16a085;
 }

 .eviction-table th {
     background: linear-gradient(135deg, var(--accent-teal), #16a085);
     color: white;
     padding: 1rem;
     font-size: 1.1rem;
     text-align: left;
     width: 50%;
     text-align: center;
     border: 2px solid #16a085;
 }


 .eviction-table td {
     vertical-align: top;
     padding: 1.2rem;
     font-size: 0.95rem;
     color: #374151;
     border: 2px solid #16a085;
 }

 /* Alternate row shading */
 .eviction-table tbody tr:nth-child(even) {
     background: #f9fafb;
 }

 /* Defence items */
 .defence-item strong {
     display: block;
     color: #111827;
     font-weight: 600;
     margin-bottom: 0.25rem;
 }

 .defence-item p {
     margin: 0;
     font-size: 0.9rem;
     color: #4b5563;
     line-height: 1.4;
 }

 .defence-item em {
     display: block;
     font-style: italic;
     color: #6b7280;
 }

 /* Hover effect */
 .eviction-table tbody tr:hover {
     background: #eef2ff;
     transition: background 0.2s ease-in-out;
 }

 .legal-info-section {
     background: white;
     padding: 4rem 0;
     position: relative;
 }

 .legal-info-container {
     max-width: 1000px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .mission-network-card {
     background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
     border-radius: 20px;
     padding: 3rem;
     margin-bottom: 2.5rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     border-left: 6px solid var(--accent-teal);
     position: relative;
     overflow: hidden;
 }

 .mission-network-card::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 100px;
     height: 100px;
     background: var(--accent-teal);
     opacity: 0.05;
     border-radius: 50%;
     transform: translate(30px, -30px);
 }

 .mission-network-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 3rem;
 }

 .mission-item h3 {
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--primary-navy);
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     gap: 0.8rem;
 }

 .mission-item h3 i {
     font-size: 1.2rem;
 }

 .mission-item p {
     color: #555;
     font-size: 1rem;
     line-height: 1.7;
 }

 /* Legal Disclosure Card */
 .legal-disclosure-card {
     background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
     border-radius: 20px;
     padding: 3rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     border-left: 6px solid var(--primary-navy);
     position: relative;
     overflow: hidden;
 }

 .legal-disclosure-card::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 120px;
     height: 120px;
     background: var(--primary-navy);
     opacity: 0.03;
     border-radius: 50%;
     transform: translate(40px, -40px);
 }

 .legal-disclosure-title {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--primary-navy);
     margin-bottom: 2rem;
     display: flex;
     align-items: center;
     gap: 0.8rem;
 }

 .legal-disclosure-title i {
     font-size: 1.3rem;
     color: var(--accent-teal);
 }

 .legal-section {
     margin-bottom: 2rem;
     padding: 1.5rem;
     background: rgba(255, 255, 255, 0.7);
     border-radius: 12px;
     border-left: 4px solid var(--accent-teal);
 }

 .legal-section:last-child {
     margin-bottom: 0;
 }

 .legal-section-title {
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--primary-navy);
     margin-bottom: 0.8rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .legal-section-title::before {
     content: '';
     width: 6px;
     height: 6px;
     background: var(--secondary-orange);
     border-radius: 50%;
 }

 .legal-section p {
     color: #555;
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 0.8rem;
 }

 .legal-section p:last-child {
     margin-bottom: 0;
 }

 .legal-section strong {
     color: var(--primary-navy);
     font-weight: 600;
 }

 /* Responsive Design */
 @media (max-width: 768px) {

     .mission-network-card,
     .legal-disclosure-card {
         padding: 2rem;
         margin-bottom: 2rem;
     }

     .mission-network-grid {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .legal-section {
         padding: 1rem;
     }
 }

 @media (max-width: 480px) {

     .mission-network-card,
     .legal-disclosure-card {
         padding: 1.5rem;
     }
 }

 .team-section {
    padding: 40px 0;
     width: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     gap: 1rem;
     background: var(--primary-navy);
     color: white;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-navy) 100%);
 }

 .team-container {
     background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-navy) 100%);
     backdrop-filter: blur(20px);
     padding: 20px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
     border: none;
     animation: fadeInUp 0.8s ease-out;
     margin-bottom: 40px;
     color: white;
 }

 .team-card {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: start;
     padding:20px;
 }

 .team-card-bottom {
     /* background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-navy) 100%); */
     backdrop-filter: blur(20px);
     padding: 40px;
     /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); */
     border: none;
     animation: fadeInUp 0.8s ease-out;
     color: white;
     /* display: flex;
     justify-content: space-between;
     flex-direction: row;
     flex-wrap: wrap; */
 }

 .team-card-bottom .left-section {
     flex: 1;
     text-align: center;
     max-width: 350px;
 }

 .team-card-bottom .right-section {
     flex: 2;
     padding-left: 20px;
     color: white;
 }




 .team-member {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 5px;
 }

 .member-image {
     width: 210px;
     height: 210px;
     border-radius: 50%;
     /* background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-teal) 100%); */
     padding: 8px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
     position: relative;
     overflow: hidden;
     margin: 0 auto 20px auto;
 }

 .member-image img {
     width: 100%;
     height: 100%;
     border-radius: 50%;
     object-fit: cover;
 }

 .team-member h3 {
     font-size: 2rem;
     color: white;
     margin-bottom: 8px;
     font-weight: 700;
     letter-spacing: 1px;
 }

 .member-title {
     color: rgba(255, 255, 255, 0.9);
     font-size: 1.25rem;
     font-weight: 500;
     margin-bottom: 0;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .member-info {
     display: flex;
     flex-direction: column;
     gap: 30px;
     margin-top: 20px;
 }

 .member-description {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.7;
     margin-bottom: 0;
 }

 .expertise-list {
     display: grid;
         padding: 10px;
        background: rgba(255, 255, 255, 0.1);
     /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
     gap: 30px;
     padding:2rem;
 }

 .expertise-item {
     display: flex;
     align-items: flex-start;
     gap: 7px;
     padding: 0.5rem;
     /* background: rgba(255, 255, 255, 0.1); */
     border-radius: 12px;
     /* border-left: 4px solid rgba(255, 255, 255, 0.3); */
     transition: all 0.3s ease;
 }

 .expertise-item:hover {
     transform: translateY(-2px);
     background: rgba(255, 255, 255, 0.15);
 }

 .expertise-item p {
     color: rgba(255, 255, 255, 0.9);
     font-size: 1rem;
     margin-bottom: 0;
 }

 .expertise-icon {
     width: 24px;
     height: 24px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 14px;
     flex-shrink: 0;
     margin-top: 2px;
 }

 .member-quote {
     background: white;
     color: black;
     padding: 25px;
     border-radius: 15px;
     position: relative;
     border: 1px solid rgba(255, 255, 255, 0.2);
     max-width: 600px;
 }

 .member-quote::before {
     content: '"';
     font-size: 4rem;
     position: absolute;
     top: -20px;
     left: 20px;
     opacity: 0.3;
     font-family: serif;
     color: var(--accent-teal);
 }

 .quote-text {
     font-size: 0.75rem;
     font-style: italic;
     margin-bottom: 15px;
     position: relative;
     z-index: 1;
     color: var(--accent-teal);
 }

 .quote-author {
     font-size: 0.9rem;
     opacity: 0.8;
     text-align: right;
     color: var(--accent-teal);
     margin-bottom: 0;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 1120px) {
     .team-card-bottom {
         flex-direction: column;
         gap: 20px;
     }

     .team-card-bottom .right-section {
         padding-left: 0;
         /* so it centers better */
     }

     .quote {
         font-size: 0.75rem;
     }

     .left-section img {
         width: 100px;
         height: 100px;
     }

     .left-section h3 {
         font-size: 1.2rem;
     }
     .info-card{
        width:300px;
     }
 }

 @media (max-width: 992px) {
     .team-card {
         grid-template-columns: 1fr;
         gap: 30px;
         text-align: center;
     }

     .member-info {
         text-align: left;
     }
 }

 @media (max-width: 768px) {
     .section-title {
         font-size: 2rem;
         flex-direction: column;
         gap: 15px;
     }

     .expertise-list {
         grid-template-columns: 1fr;
     }

     .team-card {
         padding: 30px 20px;
     }

     .member-image {
         width: 150px;
         height: 150px;
     }

     .cta-button-orange {
         padding: 12px 20px !important;
         font-size: 0.9rem !important;
         border-radius: 10px !important;
     }

     .cta-button-white {
         padding: 12px 20px !important;
         font-size: 0.9rem !important;
         border-radius: 10px !important;
     }

     .cta-button-white:hover {
         color: #000 !important;
     }
 }

 @media (max-width: 576px) {
     .section-title {
         font-size: 1.8rem;
     }

     .team-member h3 {
         font-size: 1.5rem;
     }

     .member-title {
         font-size: 1rem;
     }
 }

 .cta-section {
     background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
     /* border-radius: 20px; */
     padding: 2rem 1.5rem;
     margin: 2rem 0;
     position: relative;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
 }

 .cta-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background:
         radial-gradient(circle at 20% 80%, rgba(19, 136, 125, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 80% 20%, rgba(19, 136, 125, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
 }

 .cta-content {
     position: relative;
     z-index: 1;
     padding: 1rem 3rem;
 }

 .cta-title {
     font-size: 1.3rem;
     font-weight: 700;
     color: #ffffff;
     margin-bottom: 1rem;
     line-height: 1.2;
     text-align: left;
 }

 .cta-text {
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.85);
     margin-bottom: 0;
     line-height: 1.5;
 }

 .cta-buttons {
     display: flex;
     gap: 1rem;
     align-items: center;
     justify-content: space-around;
     height: 100%;
 }

 .cta-button-orange {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: #ffffff;
     border: none;
     padding: 0.875rem 2rem;
     border-radius: 12px;
     font-weight: 600;
     font-size: 1rem;
     text-decoration: none;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
     position: relative;
     overflow: hidden;
     min-width: 200px;
     text-align: center;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     white-space: nowrap;
 }

 .cta-button-orange::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.5s ease;
 }

 .cta-button-orange:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
     color: #ffffff;
 }

 .cta-button-orange:hover::before {
     left: 100%;
 }

 .cta-button-orange:active {
     transform: translateY(-1px);
 }

 .cta-button-orange i {
     margin-right: 0.5rem;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .cta-section {
         padding: 2rem 1.5rem;
         text-align: center;
     }

     .cta-title {
         font-size: 1rem;
         text-align: center;
     }

     .cta-text {
         text-align: center;
         margin-bottom: 2rem;
     }

     .cta-buttons {
         flex-direction: column;
         align-items: center;
         width: 100%;
     }

     .cta-button-orange {
         width: 100%;
     }
 }

 @media (max-width: 576px) {
     .cta-section {
         padding: 1.5rem 1rem;
         margin: 2rem 0;
     }

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

     .cta-text {
         font-size: 0.7rem;
     }

     .cta-buttons {
         gap: 0.75rem;
     }
 }

 /* Additional Enhancement: Pulse Effect */
 @keyframes pulse {
     0% {
         box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
     }

     50% {
         box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
     }

     100% {
         box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
     }
 }

 .cta-button-orange:focus {
     animation: pulse 2s infinite;
     outline: none;
 }

 .lookup-block {
     background: var(--white);
     box-shadow: 0 4px 20px rgba(10, 35, 66, 0.08);
     overflow: hidden;
     border: 1px solid rgba(19, 136, 125, 0.1);
 }

 .header {
     background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2a4a 100%);
     padding: 32px 24px 28px;
     text-align: center;
     position: relative;
 }

 /* .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-teal) 0%, var(--secondary-orange) 100%);
        } */

 .header h3 {
     margin: 0 0 12px;
     font-size: 28px;
     font-weight: 700;
     color: var(--white);
     letter-spacing: -0.5px;
 }

 .header p {
     margin: 0;
     color: rgba(255, 255, 255, 0.85);
     font-size: 16px;
     max-width: 400px;
     margin: 0 auto;
 }

 .content {
     padding: 32px 24px;
     background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2a4a 100%);
 }

 .form-group {
     max-width: 600px;
     /* margin-bottom: 24px; */
     margin: 0 auto;
 }

 .input-row {
     display: flex;
     gap: 12px;
     margin-bottom: 8px;
     flex-direction: column;
 }

 .postcode-input {
     flex: 1;
     padding: 16px 20px;
     border: 2px solid #e1e5e9;
     border-radius: 12px;
     font-size: 16px;
     font-weight: 500;
     background: var(--white);
     color: var(--body-text);
     transition: all 0.3s ease;
 }

 .postcode-input:focus {
     outline: none;
     border-color: var(--accent-teal);
     box-shadow: 0 0 0 3px rgba(19, 136, 125, 0.1);
 }

 .postcode-input::placeholder {
     color: #9ca3af;
     font-weight: 400;
 }

 .lookup-btn {
     padding: 16px 24px;
     background: linear-gradient(135deg, var(--accent-teal) 0%, #0f6b63 100%);
     color: var(--white);
     border: none;
     border-radius: 12px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 2px 8px rgba(19, 136, 125, 0.2);
 }

 .lookup-btn:hover {
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(19, 136, 125, 0.3);
 }

 .lookup-btn:active {
     transform: translateY(0);
 }

 .help-text {
     font-size: 14px;
     color: #6b7280;
     margin: 0;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .help-text::before {
     content: "ℹ️";
     font-size: 16px;
 }

 .error {
     background: linear-gradient(135deg, #fef2f2 0%, #fde8e8 100%);
     color: #dc2626;
     padding: 12px 16px;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 500;
     margin-top: 12px;
     border-left: 4px solid #dc2626;
 }

 .loader {
     text-align: center;
     padding: 32px;
     color: var(--accent-teal);
     font-weight: 500;
 }

 .loader::before {
     content: "";
     display: inline-block;
     width: 20px;
     height: 20px;
     border: 2px solid var(--accent-teal);
     border-radius: 50%;
     border-top-color: transparent;
     animation: spin 1s linear infinite;
     margin-right: 12px;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 .result-card {
     margin-top: 24px;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid rgba(19, 136, 125, 0.2);
     box-shadow: 0 2px 12px rgba(10, 35, 66, 0.05);
 }

 .card-header {
     background: linear-gradient(135deg, var(--accent-teal) 0%, #0a233f 100%);
     padding: 20px 24px;
     border-bottom: 1px solid rgba(19, 136, 125, 0.1);
 }

 .court-name {
     margin: 0 0 8px;
     font-size: 20px;
     font-weight: 700;
     color: var(--primary-navy);
 }

 .court-details {
     margin: 4px 0;
     color: #6b7280;
     font-size: 14px;
 }


 .success-message {
     background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
     color: var(--accent-teal);
     padding: 16px 20px;
     border-radius: 8px;
     margin-bottom: 20px;
     font-weight: 600;
     border-left: 4px solid var(--accent-teal);
 }

 .action-buttons {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .btn-primary {
     flex: 1;
     min-width: 180px;
     padding: 16px 24px;
     background: linear-gradient(135deg, var(--secondary-orange) 0%, #d14c02 100%);
     color: var(--white);
     border: none;
     border-radius: 10px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-align: center;
     box-shadow: 0 2px 8px rgba(232, 93, 4, 0.2);
 }

 .btn-primary:hover {
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
 }

 .btn-secondary {
     flex: 1;
     min-width: 180px;
     padding: 16px 24px;
     background: var(--white);
     color: var(--primary-navy);
     border: 2px solid var(--primary-navy);
     border-radius: 10px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-align: center;
 }

 .btn-secondary:hover {
     background: var(--primary-navy);
     color: var(--white);
     transform: translateY(-1px);
 }

 .lead-form {
     margin-top: 32px;
     background: linear-gradient(135deg, var(--neutral-bg) 0%, #f1f3f5 100%);
     padding: 28px;
     border-radius: 12px;
     border: 1px solid rgba(19, 136, 125, 0.1);
 }

 .lead-form h5 {
     margin: 0 0 20px;
     font-size: 20px;
     font-weight: 700;
     color: var(--primary-navy);
     text-align: center;
 }

 .form-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 16px;
     margin-bottom: 20px;
 }

 .lead{
     list-style: none;
     line-height: 1.7;
 }


 .lead-input {
     padding: 14px 16px;
     border: 2px solid #e1e5e9;
     border-radius: 8px;
     font-size: 15px;
     background: var(--white);
     transition: all 0.3s ease;
 }

 .lead-input:focus {
     outline: none;
     border-color: var(--accent-teal);
     box-shadow: 0 0 0 3px rgba(19, 136, 125, 0.1);
 }

 .trust-message {
     text-align: center;
     font-size: 13px;
     color: #6b7280;
     margin-top: 12px;
 }

 .compliance-note {
     margin-top: 24px;
     padding: 16px;
     background: rgba(19, 136, 125, 0.05);
     border-radius: 8px;
     font-size: 12px;
     color: #6b7280;
     text-align: center;
 }

 @media (max-width: 640px) {
     .input-row {
         flex-direction: column;
     }

     .action-buttons {
         flex-direction: column;
     }

     .btn-primary,
     .btn-secondary {
         min-width: auto;
     }

     .form-grid {
         grid-template-columns: 1fr;
     }

     .content {
         padding: 24px 16px;
     }

     .header {
         padding: 24px 16px 20px;
     }
 }

 [hidden] {
     display: none !important;
 }

 .reviews-widget {
     background: var(--white);
     box-shadow: 0 4px 20px rgba(10, 35, 66, 0.08);
     overflow: hidden;
     border: 1px solid rgba(19, 136, 125, 0.1);
 }

 .widget-header {
     background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2a4a 100%);
     padding: 32px 24px;
     text-align: center;
     position: relative;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .widget-header:hover {
     transform: translateY(-1px);
     box-shadow: 0 6px 25px rgba(10, 35, 66, 0.15);
 }


 .google-logo {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     margin-bottom: 16px;
 }

 .google-icon {
     width: 32px;
     height: 32px;
     background: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     font-size: 18px;
     background: linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
     color: var(--white);
 }

 .rating-summary {
     color: var(--white);
 }

 .rating-summary h3 {
     margin: 0 0 8px;
     font-size: 24px;
     font-weight: 700;
 }

 .overall-rating {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     margin-bottom: 8px;
 }

 .rating-number {
     font-size: 36px;
     font-weight: 800;
     color: #fbbf24;
 }

 .stars {
     display: flex;
     gap: 2px;
 }

 .star {
     color: #fbbf24;
     font-size: 24px;
 }

 .star.empty {
     color: rgba(251, 191, 36, 0.3);
 }

 .review-count {
     color: rgba(255, 255, 255, 0.85);
     font-size: 16px;
 }

 .click-hint {
     color: rgba(255, 255, 255, 0.7);
     font-size: 14px;
     margin-top: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
 }

 .reviews-container {
     padding: 32px 24px;
 }

 .loading-state {
     text-align: center;
     padding: 40px;
     color: var(--accent-teal);
 }

 .loading-spinner {
     width: 40px;
     height: 40px;
     border: 3px solid var(--neutral-bg);
     border-top: 3px solid var(--accent-teal);
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin: 0 auto 16px;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .review-carousel {
     display: flex;
     gap: 24px;
     overflow-x: auto;
     scroll-behavior: smooth;
     padding-bottom: 8px;
 }

 .review-carousel::-webkit-scrollbar {
     height: 6px;
 }

 .review-carousel::-webkit-scrollbar-track {
     background: var(--neutral-bg);
     border-radius: 3px;
 }

 .review-carousel::-webkit-scrollbar-thumb {
     background: var(--accent-teal);
     border-radius: 3px;
 }

 .review-card {
     min-width: 320px;
     background: var(--neutral-bg);
     border-radius: 12px;
     padding: 24px;
     border: 1px solid rgba(19, 136, 125, 0.1);
     position: relative;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .review-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(10, 35, 66, 0.1);
     border-color: var(--accent-teal);
 }

 .review-header {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 16px;
 }

 .reviewer-avatar {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--accent-teal) 0%, var(--secondary-orange) 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-weight: 700;
     font-size: 18px;
     overflow: hidden;
 }

 .reviewer-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .reviewer-info h4 {
     margin: 0;
     font-size: 16px;
     font-weight: 600;
     color: var(--primary-navy);
 }

 .review-date {
     color: #6b7280;
     font-size: 14px;
     margin: 4px 0;
 }

 .review-stars {
     display: flex;
     gap: 2px;
     margin-bottom: 16px;
 }

 .review-stars .star {
     font-size: 16px;
 }

 .review-text {
     color: var(--body-text);
     font-size: 15px;
     line-height: 1.6;
     margin-bottom: 16px;
     display: -webkit-box;
     -webkit-line-clamp: 4;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .review-platform {
     display: flex;
     align-items: center;
     justify-content: space-between;
     font-size: 12px;
     color: #6b7280;
 }

 .google-badge {
     /* background: #4285f4; */
     color: var(--white);
     padding: 4px 8px;
     border-radius: 4px;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .read-more {
     color: var(--accent-teal);
     font-weight: 500;
     cursor: pointer;
 }

 .navigation-dots {
     display: flex;
     justify-content: center;
     gap: 8px;
     margin-top: 24px;
 }

 .dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #d1d5db;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .dot.active {
     background: var(--accent-teal);
     transform: scale(1.2);
 }

 .cta-section-google {
     background: linear-gradient(135deg, var(--neutral-bg) 0%, #f1f3f5 100%);
     padding: 28px 24px;
     text-align: center;
     border-top: 1px solid rgba(19, 136, 125, 0.1);
 }

 .cta-section-google h4 {
     margin: 0 0 16px;
     font-size: 20px;
     font-weight: 700;
     color: var(--primary-navy);
 }

 .cta-buttons {
     display: flex;
     gap: 12px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .btn-google {
     padding: 12px 24px;
     background: var(--accent-teal);
     color: var(--white);
     text-decoration: none;
     border-radius: 8px;
     font-weight: 600;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     border: none;
     cursor: pointer;
 }

 .btn-google:hover {
     background: var(--accent-teal);
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
 }

 .btn-contact {
     padding: 12px 24px;
     background: linear-gradient(135deg, var(--secondary-orange) 0%, #d14c02 100%);
     color: var(--white);
     text-decoration: none;
     border-radius: 8px;
     font-weight: 600;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     border: none;
     cursor: pointer;
 }

 .btn-contact:hover {
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
 }

 .google-verified {
     position: absolute;
     top: 16px;
     right: 16px;
     /* background: #10b981; */
     color: var(--body-text);
     padding: 4px 8px;
     border-radius: 12px;
     font-size: 11px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .error-state {
     text-align: center;
     padding: 40px 24px;
     color: #6b7280;
 }

 .error-state h4 {
     color: var(--primary-navy);
     margin-bottom: 8px;
 }

 @media (max-width: 640px) {
     .reviews-container {
         padding: 24px 16px;
     }

     .widget-header {
         padding: 24px 16px;
     }

     .review-card {
         min-width: 280px;
     }

     .cta-buttons {
         flex-direction: column;
         align-items: center;
     }

     .btn-google,
     .btn-contact {
         width: 200px;
         justify-content: center;
     }
 }

 .fade-in {
     animation: fadeIn 0.6s ease-in;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .cta-section-button-orange {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: #ffffff;
     border: none;
     padding: 0.7rem 1rem;
     border-radius: 12px;
     font-weight: 800;
     font-size: 1rem;
     text-decoration: none;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
     position: relative;
     overflow: hidden;
     min-width: 200px;
     text-align: center;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     white-space: nowrap;
 }

 .social-icons {
     display: flex;
     justify-content: space-around;
     align-items: start;
     gap: 20px;
     margin-bottom: 1rem;
     max-width: 200px;
     margin: 0 auto;
     margin-top: 2rem;
 }

 .social-icons i {
     color: white;
     font-size: 2rem;
     margin: 0 10px;
     transition: color 0.3s ease;
 }

 .social-icons i:hover {
     color: #20c997;
     /* Accent teal on hover */
 }