.trust-section {
    background: #ff5722;
    background: linear-gradient(180deg, #ff5722 0%, #ff6433 50%, #ff5722 100%);
    position: relative;
    width: 100%;
    min-height: 600px;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0px 0px 30px 0px;
    color: white;
    text-align: center;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
      rgba(255, 255, 255, 0.1),
      transparent 50%,
      rgba(255, 255, 255, 0.1)
    );
    pointer-events: none;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-content {
    margin-bottom: 40px;
}

.text-content h2 {
    
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.text-content p {
    font-size: 1.15em;
    color: #fbeee6;
    margin: 0 auto;
    max-width: 600px;
}

.area-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border-radius: 22px;
    max-width: 800px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    background: #fff;
   margin: 10px auto 10px auto;
   padding: 20px;
 
  
}



.area-card h3 {
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 18px;
    color: #ff5722;
}

.guarantees-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 1.08em;
    margin-bottom: 15px;
}

.check-icon {
    color: #4CAF50;
    font-size: 1.25em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.stats-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.badge {
    background: #fff;
    color: #ff5722;
    font-weight: bold;
    font-size: 1.5em;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stats-badge p {
    margin: 0;
    color: #fff;
    font-size: 1.1em;
}

@media (max-width: 700px) {
    .area-section {
        min-height: 400px;
        padding: 50px 10px;
    }
    .area-card {
        padding: 24px 10px 24px 10px;
        max-width: 90%;
    }
    .area-container {
        padding: 0;
    }
   
       .area-container {
         max-width: 90%
      }
      
      .area-image {
         display: none;
      }
}

    .stats-row {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .stat-box {
        background: #ff5722;
        border-radius: 8px;
        padding: 20px;
        margin: 10px 0;
        box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .stat-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
        z-index: 1;
    }
    
    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
    }
    
    .stat-number {
        font-size: 2.8em;
        font-weight: bold;
        color: #fff;
        margin-bottom: 5px;
        position: relative;
        z-index: 2;
    }
    
    .stat-label {
        font-size: 1.1em;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        position: relative;
        z-index: 2;
    }

    @media (max-width: 767px) {
        .stats-row {
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .stat-box {
            margin: 5px 0;
        }
        .stat-number {
            font-size: 2.2em;
        }
    }
    
    .stats-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 25px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .mini-stats-bar {
        display: inline-flex;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        padding: 6px 20px;
        border-radius: 30px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .stats-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }
    
    .mini-stat {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 4px 0;
    }
    
    .mini-stat-number {
        font-size: 1.15em;
        font-weight: 700;
        color: #fff;
        letter-spacing: -0.2px;
    }
    
    .mini-stat-label {
        font-size: 1em;
        color: rgba(255, 255, 255, 0.95);
        white-space: nowrap;
        letter-spacing: 0.2px;
    }

    .mini-stat-divider {
        width: 1px;
        height: 16px;
        background: rgba(255, 255, 255, 0.25);
    }

    @media (max-width: 767px) {
        .stats-wrapper {
            margin: 35px 0 0;
            padding: 0 20px;
        }

        .mini-stats-bar {
            width: 100%;
            padding: 15px;
        }

        .stats-container {
            flex-direction: column;
            gap: 15px;
            align-items: center;
            margin: auto;
        }

        .mini-stat {
            justify-content: center;
            text-align: center;
            width: auto;
        }

        .mini-stat-divider {
            display: none;
        }
    }
    
    .homepage-banner {
        padding: 40px 0;
        position: relative;
    }

    .form-container {
        position: relative;
        z-index: 10;
    }

    .form-group {
        margin-bottom: 20px;
        position: relative;
    }

    .form-group label {
        font-weight: 500;
        color: #fff;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        margin-bottom: 8px;
        display: block;
    }

    .form-control {
        height: 54px;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 8px 15px;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .form-control:focus {
        background: #fff;
        border-color: #ff5722;
        box-shadow: 0 8px 15px rgba(255, 87, 34, 0.15);
        transform: translateY(-1px);
    }

    .form-control::placeholder {
        color: #999;
    }

    .btn-success {
        background: #ff5722;
        border: none;
        height: 54px;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        margin-top: 10px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    }

    .btn-success:hover {
        background: #f4511e;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(244, 81, 30, 0.4);
    }

    /* Address autocomplete dropdown styling */
    .autocomplete-items {
        position: absolute;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        z-index: 99;
        top: 100%;
        left: 0;
        right: 0;
        border-radius: 0 0 8px 8px;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .autocomplete-items div {
        padding: 10px 15px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .autocomplete-items div:hover {
        background-color: rgba(255, 87, 34, 0.1);
    }

    .autocomplete-active {
        background-color: rgba(255, 87, 34, 0.15) !important;
    }

    @media (max-width: 767px) {
        .form-container {
            margin: 0 15px;
        }
        
        .form-control {
            height: 48px;
        }
        
        .btn-success {
            height: 48px;
            font-size: 16px;
        }
    }
    
    .hero-section {
        padding: 40px 0;
        position: relative;
    }

    /* Stats Bar Styling */
    .stats-bar {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 30px;
        padding: 15px 25px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        color: white;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .stat-number {
        font-size: 24px;
        font-weight: 700;
        color: #ff5722;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        margin-right: 5px;
    }

    .stat-label {
        font-size: 14px;
        font-weight: 500;
        opacity: 0.9;
        white-space: nowrap;
    }

    @media (max-width: 767px) {
        .stats-bar {
            flex-direction: column;
            gap: 15px;
            align-items: center;
            text-align: center;
            padding: 15px;
            margin: 20px 15px 0;
        }

        .stat-item {
            justify-content: center;
        }

        .stat-number {
            font-size: 20px;
        }

        .stat-label {
            font-size: 13px;
        }
    }
   
    .hidden-review {
        display: none;
    }

    .reviews-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        background: #f1f5f9;
    }
    .reviews-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .reviews-title h2 {
        color: #333;
        font-size: 2.2em;
        margin-bottom: 15px;
        
    }

.reviews-title p {
      color: #666;
      font-size: 1.1em;
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }
.reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        justify-content: center;
        padding: 60px 20px 30px;
        margin-bottom: 15px;
    }

    .review-card {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 25px;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 220px;
    }

    @media (max-width: 900px) {
        .reviews-grid {
            grid-template-columns: 1fr;
            align-items: center;
        }
        .review-card {
            max-width: 100%;
            min-width: 0;
            width: 100%;
        }
    }

    .review-card {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 25px;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    .review-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    .reviewer-name {
        font-weight: bold;
        color: #333;
        margin-right: 10px;
    }
    .review-date {
        color: #666;
        font-size: 0.9em;
    }
    .review-stars {
        color: #FF5722;
        margin-bottom: 10px;
    }
    .review-content {
        color: #444;
        line-height: 1.6;
        margin-top: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

 .reviews-footer {
            text-align: center;
            padding: 10px 0;
            background: transparent;
            display: flex;
            justify-content: center;
            width: 100%;
        }
        .see-more-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #666;
            text-decoration: none;
            font-size: 15px;
            padding: 8px 20px;
            border: 1px solid #ddd;
            border-radius: 20px;
            transition: all 0.2s ease;
        }
        .see-more-link:hover {
            background: #f5f5f5;
            color: #333;
        }

    .hiw-section {
        width: 100%;
        background: #f1f5f9;
        padding: 30px 0 30px 0;
        position: relative;
    }

    .hiw-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        /* background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%); */
    }

    .hiw-container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
        position: relative;
    }

    .hiw-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .hiw-header h2 {
        color: #333;
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .hiw-header p {
        color: #666;
        font-size: 1.1em;
        max-width: 600px;
        margin: 0 auto;
    }

    .hiw-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 30px auto 20px auto;
        max-width: 1100px;
    
    }

    .step-card {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        padding: 25px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    .step-icon {
        width: 50px;
        height: 50px;
        background: #ff5722;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 3.0rem;
        flex-shrink: 0;
    }

    .step-content {
        flex-grow: 1;
    }

    .step-title {
        margin: 0 0 8px;
        font-size: 1.25rem;
        font-weight: bold;
        color: #333;
    }

    .step-description {
        margin: 0;
        color: #666;
        line-height: 1.5;
    }

    .payment-section {
        margin-top: 50px;
        text-align: center;
    }

    .payment-methods {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        align-items: center;
    }

    .payment-method {
        height: 38px;
        width: auto;
        object-fit: contain;
        filter: grayscale(0.2) brightness(0.95);
        transition: filter 0.2s;
    }

    .payment-method:hover {
        filter: grayscale(0) brightness(1.1);
    }

    .cta-quote-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .cta-quote-btn {
        background: #ff5722;
        color: #fff;
        font-size: 1.23em;
        font-weight: bold;
        border-radius: 30px;
        padding: 16px 44px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        border: none;
        transition: background 0.2s, color 0.2s;
        text-decoration: none;
        display: inline-block;
        margin-top: 8px;
        width: 100%;
        max-width: 430px;
        text-align: center;
    }

    .cta-quote-btn:hover, .cta-quote-btn:focus {
        background: #ffefe8;
        color: #ff5722;
        text-decoration: none;
    }

    @media (max-width: 700px) {
        .cta-quote-btn {
            font-size: 1em;
            padding: 12px 10px;
            max-width: 90%;
        }
    }

    .benefits-section {
        background: #fff;
        padding: 32px 0 32px 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .benefits-container {
        /* max-width: 600px; */
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .benefits-content h2 {
        color: #333;
        font-size: 2.2em;
        margin-bottom: 15px;
        text-align: center;
    }

    .benefits-content p {
        color: #666;
        font-size: 1.1em;
        max-width: 800px;
        margin: auto;
        text-align: center;
    }

    .benefits-list {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
        margin-top: 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .benefits-list li {
        display: flex;
        align-items: center;
        gap: 18px;
        color: #666;
        font-size: 1.18em;
        margin-bottom: 0;
        padding-left: 0;
        position: relative;
        background: #f8f8f8;
        border-radius: 10px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        padding: 14px 22px 14px 16px;
        min-width: 320px;
        max-width: 550px;
        width: 100%;
        transition: box-shadow 0.2s;
    }

    .location-benefits-list li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .location-benefits-list .benefit-details {
        margin-left: 15px;
    }
    
    .location-benefits-list .benefit-details strong {
        color: #333;
        margin-right: 5px;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-left: 0;
    }
    .benefits-list li span:last-child {
        display: block;
        /* flex: 1; */
        line-height: 1.4;
        font-size: 1em;
        color: #444;
    }
    @media (max-width: 700px) {
        .benefits-container {
            max-width: 90%;
            padding: 0 8px;
        }
        .benefits-list li {
            min-width: 0;
            max-width: 100%;
            font-size: 1em;
            padding: 12px 10px 12px 10px;
        }
        .benefit-icon {
            min-width: 36px;
            min-height: 36px;
            padding: 6px;
        }
    }

    .homepage-ticker {
        width: 100%;
        overflow: hidden;
        background: #ff631d;
       
        padding: 0;
        margin: 0 0 20px 0;
    }
    .ticker-track {
        display: flex;
        width: max-content;
        animation: ticker-scroll 30s linear infinite;
    }
    .ticker-item {
        display: flex;
        align-items: center;
        white-space: nowrap;
        font-size: 1.13em;
        font-weight: 500;
        color: #fff;
        padding: 0 44px;
        height: 56px;
        background: transparent;
    }
    .ticker-icon {
        margin-right: 12px;
        display: flex;
        align-items: center;
    }
    /* Duplicate ticker items for seamless scroll */
    .ticker-track {
        position: relative;
    }
    .ticker-track::after {
        content: attr(data-duplicate);
        display: flex;
    }
    @keyframes ticker-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Responsive */
    @media (max-width: 700px) {
        .ticker-item {
            font-size: 0.98em;
            padding: 0 22px;
            height: 38px;
        }
    }

    .services-section {
        background: #fff;
        padding: 30px 0 30px 0;
        width: 100%;
    }

    .services-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .services-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .services-header h2 {
        color: #333;
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .services-header p {
       color: #666;
       font-size: 1.1em;
       /* max-width: 600px; */
       margin: 0 auto;
    }

    .services-list {
        display: flex;
        gap: 32px;
        justify-content: center;
        margin-top: 30px;
    }

    .service-card {
        background: #f9f9f9;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        padding: 28px 28px 24px 24px;
        min-width: 260px;
        max-width: 350px;
        flex: 1 1 260px;
        transition: box-shadow 0.2s, transform 0.2s;
    }

    .service-card:hover {
        box-shadow: 0 4px 16px rgba(255,87,34,0.18);
        transform: translateY(-4px) scale(1.02);
    }

    .service-icon {
        color: #ff5722;
        background: #ffefe8;
        border-radius: 50%;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .service-content h3 {
        margin: 0 0 8px 0;
        font-size: 1.18em;
        color: #222;
    }

    .service-content p {
        margin: 0;
        color: #666;
        font-size: 1em;
    }

    @media (max-width: 900px) {
       
       .services-container {
            max-width: 90%;
            padding: 0 8px;
       }
        .services-list {
            flex-direction: column;
            align-items: center;
        }
        .service-card {
            max-width: 100%;
            min-width: 0;
            width: 100%;
        }
    }

    .faq-section {
        background: #fff;
        padding: 64px 0 40px 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        border-top: 1px solid #eee;
    }
    .faq-container {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
        padding: 0 16px;
    }
    .faq-title {
        text-align: center;
        font-size: 2em;
        color: #333;
        margin-bottom: 32px;
        font-weight: bold;
    }
    .faq-accordion {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .faq-item {
        border-radius: 10px;
        background: #f8f8f8;
        box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        overflow: hidden;
        transition: box-shadow 0.2s;
    }
    .faq-item:focus-within,
    .faq-item:hover {
        box-shadow: 0 4px 16px rgba(255,87,34,0.10);
    }
    .faq-question {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        outline: none;
        font-size: 1.13em;
        font-weight: 600;
        color: #333;
        padding: 18px 22px 18px 16px;
        cursor: pointer;
        transition: background 0.15s;
        position: relative;
    }
    .faq-question[aria-expanded="true"] {
        background: #fff3e9;
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: #fff;
        color: #444;
        font-size: 1.08em;
        padding: 0 22px;
        transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 18px 22px 18px 22px;
    }
    @media (max-width: 700px) {

        .faq-section { 
            max-width: 90%;
        margin: auto;
        }
        .faq-container {
            max-width: 100%;
            padding: 0 6px;
        }
        .faq-title {
            font-size: 1.3em;
        }
        .faq-question {
            font-size: 1em;
            padding: 14px 10px 14px 10px;
        }
        .faq-answer {
            font-size: 1em;
            padding: 0 10px;
        }
    }

    .final-cta-section {
        background: linear-gradient(90deg, #ff5722 0%, #ff9800 100%);
        padding: 54px 0 54px 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-top: 1px solid #ffb48a;
        box-shadow: 0 -2px 16px rgba(255,87,34,0.07);
    }
    .final-cta-container {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .final-cta-title {
        color: #fff;
        font-size: 2.1em;
        font-weight: 700;
        text-align: center;
        margin-bottom: 0;
        text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .final-cta-btn {
        background: #fff;
        color: #ff5722;
        font-size: 1.23em;
        font-weight: bold;
        border-radius: 30px;
        padding: 16px 44px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        border: none;
        transition: background 0.2s, color 0.2s;
        text-decoration: none;
        display: inline-block;
        margin-top: 8px;
    }
    .final-cta-btn:hover, .final-cta-btn:focus {
        background: #ff5722;
        color: #fff;
        text-decoration: none;
    }
    @media (max-width: 700px) {
        .final-cta-container {
            max-width: 100%;
            padding: 0 6px;
        }
        .final-cta-title {
            font-size: 1.2em;
        }
        .final-cta-btn {
            font-size: 1em;
            padding: 12px 18px;
        }
    }

.reviews-section {
    padding: 30px 0 30px 0;
    background:  #f1f5f9;
}

.homepage .terms {
    margin-top: 0 !important;
}

.section-title {
   text-align: center;
   
}
.section-title h2 {
        color: #333;
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .section-title p {
       color: #666;
       font-size: 1.1em;
    line-height: 1.6em;
       margin: 0 auto;
    }

.area-container {
    max-width: 1100px;
    margin: auto;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.area-section {
     padding: 30px 0 30px 0;
   background: #ff5722;
}

/*.area-section h2{
    color: #fff
}*/


 .area-card p {
       color: #666;
       font-size: 1.1em;
    line-height: 1.6em;
       margin: 0 auto;
    }

.areas-list {
       color: #666;
       font-size: 1.1em;
    line-height: 1.6em;
       margin: 20px;
       list-style-type: disc;

    }
.area-content {
   display: flex;
   margin-top: 20px;
}

.area-cta {
   margin: 30px auto;
   width: 100%;
}

.area-text {
   flex: 65%;
   padding: 10px
}

.area-image {
   flex: 35%;
   
}

.area-image img {
   max-height: 400px;
   
}

   @media (max-width: 900px) {
      
      .hiw-container {
         max-width: 90%;
      }
        .hiw-steps {
            flex-direction: column;
            align-items: center;
           display: flex;
        }
        .step-card {
            max-width: 100%;
            min-width: 0;
            width: 100%;
        }
      
  
    }

