.feature-box {
    padding: 20px 15px;
}

.step-box-section .feature-box h4 {
    font-size: 16px;
    margin-bottom: 7px;
    font-weight: 500;
    color: var(--goaid-red);
}

.step-box-section .feature-box h4 + p {
    margin-bottom: 0;
    color: var(--goaid-dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.charges-section {
    text-align: center;
}

.charges-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.charges-table {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.charges-table th {
    background-color: #1e73be;
    color: white;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
}

.charges-table td {
    padding: 14px;
    font-size: 0.95rem;
    border-bottom: 1px solid #e5e7eb;
}

.charges-table tr:last-child td {
    border-bottom: none;
}

.charges-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 10px;
}

.air-ambulance-section {
    padding: 50px;
}

.air-ambulance-section h2 {
    color: var(--goaid-black);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.routes-grid a {
    display: block;
    color: var(--goaid-black);
    /*border: 1px solid var(--goaid-blue);*/
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease;
    text-align: center;
}

.routes-grid a:hover {
    background-color: darkred;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);;
    }

    .routes-grid a {
        padding: 8px 5px;
    }
}


/* Blog Section */
.blog-section {
    padding: 100px 0;
}

.blog-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 0 10px;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-slider .card-img-top {
    height: 250px;
    object-fit: cover;
}

.slick-prev, .slick-next {
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slick-prev:before, .slick-next:before {
    color: #000;
    font-size: 20px;
}

/* Our Clients */
.our-clients {
    /*background-image: linear-gradient(45deg, #eff6ff 45%, #eff6ff 65%);*/
}

.partner-box {
    padding: 20px 30px;
    margin: 10px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.partner-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.slick-slide {
    display: flex;
    justify-content: center;
}


@media (max-width: 500px) {
    .text-content h1 {
        font-size: 1.5rem;
    }

    .booking-form {
        max-width: 100%;
    }

    .section-padding {
        padding: 30px 0;
    }

    .cta-box h3, .cta-box p {
        text-align: center;
    }

    .faq-section , .emergency-banner{
        padding: 50px 0;
    }
}
