        /* Delhivery Direct Banner Section */
        /* Basic Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.5;
}
.delivery-direct-banner {
    background-color: #e30613; /* Red background */
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure elements don't spill out */
    position: relative;
}

.banner-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px; /* Limit overall width */
    margin-bottom: 40px; /* Space for the bottom text */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.banner-left-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-right: 20px;
}

.banner-main-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.delivery-direct-logo {
    margin-bottom: 20px;
}

.delivery-direct-logo .logo-part-1 {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.delivery-direct-logo .logo-part-2 {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.banner-download-text {
    font-size: 18px;
    margin-bottom: 15px;
}

.banner-app-buttons {
    display: flex;
    gap: 15px;
}

.banner-app-button {
    background-color: white;
    color: #e30613;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.banner-app-button:hover {
    background-color: #1a1a1a;
    color: white;
}

.banner-center-illustration {
    flex: 1.5;
    min-width: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.illustration-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.timer-graphic {
    position: absolute;
    top: 10%; /* Adjust position */
    right: 10%; /* Adjust position */
    background-color: white;
    color: #e30613;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 5px solid #e30613;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}

.timer-graphic span:first-child {
    font-size: 36px;
    line-height: 1;
}

.timer-graphic span:last-child {
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
}

.banner-right-offer {
    flex: 0.8;
    min-width: 200px;
    text-align: right;
    padding-left: 20px;
}

.offer-text {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    color: white;
    position: relative;
    display: inline-block; /* To contain the percentage symbol */
}

.percent-symbol {
    font-size: 0.5em; /* Smaller percentage symbol */
    vertical-align: super;
}

.offer-subtext {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}

.offer-disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.banner-bottom-text {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-bottom-text .highlight-white {
    font-weight: 700;
    color: white;
}

/* Responsive CSS for Delhivery Direct Banner */
@media (max-width: 1024px) {
    .delivery-direct-banner {
        padding: 40px 20px;
    }

    .banner-content-wrapper {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
        gap: 40px;
    }

    .banner-left-content,
    .banner-center-illustration,
    .banner-right-offer {
        padding: 0;
        min-width: unset;
        width: 100%;
        max-width: 500px; /* Constrain width for better stacking */
    }

    .banner-left-content {
        text-align: center;
    }

    .banner-main-title {
        font-size: 42px;
    }

    .delivery-direct-logo .logo-part-1 {
        font-size: 30px;
    }

    .delivery-direct-logo .logo-part-2 {
        font-size: 40px;
    }

    .banner-app-buttons {
        justify-content: center;
    }

    .banner-center-illustration {
        order: -1; /* Move illustration to the top on mobile */
    }

    .timer-graphic {
        width: 80px;
        height: 80px;
        font-size: 30px;
        top: 0;
        right: 0;
        transform: translate(20%, -20%); /* Adjust position for mobile */
    }

    .timer-graphic span:first-child {
        font-size: 30px;
    }

    .timer-graphic span:last-child {
        font-size: 14px;
    }

    .banner-right-offer {
        text-align: center;
    }

    .offer-text {
        font-size: 60px;
    }

    .offer-subtext {
        font-size: 24px;
    }

    .banner-bottom-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .delivery-direct-banner {
        padding: 30px 15px;
    }

    .banner-main-title {
        font-size: 36px;
    }

    .delivery-direct-logo .logo-part-1 {
        font-size: 28px;
    }

    .delivery-direct-logo .logo-part-2 {
        font-size: 36px;
    }

    .timer-graphic {
        width: 70px;
        height: 70px;
    }

    .timer-graphic span:first-child {
        font-size: 28px;
    }

    .timer-graphic span:last-child {
        font-size: 12px;
    }

    .offer-text {
        font-size: 50px;
    }

    .offer-subtext {
        font-size: 20px;
    }

    .offer-disclaimer {
        font-size: 12px;
    }

    .banner-bottom-text {
        font-size: 16px;
    }
}

/* How It Works Section */
.how-it-works-section {
    background-color: white; /* White background */
    padding: 80px 40px;
    text-align: center;
}

.how-it-works-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center; /* Center the header title */
}

.how-it-works-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
}

.how-it-works-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on larger screens */
    gap: 30px;
    justify-content: center;
    max-width: 1200px; /* Limit overall width */
    margin: 0 auto;
}

.how-it-works-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.step-image-container {
    width: 100%;
    height: 180px; /* Fixed height for images */
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f7f7f7; /* Light grey background for image container */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Add some padding to the container */
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the image fits within the container without cropping */
}

.step-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsive CSS for How It Works Section */
@media (max-width: 1024px) {
    .how-it-works-section {
        padding: 60px 20px;
    }

    .how-it-works-header {
        margin-bottom: 40px;
    }

    .how-it-works-title {
        font-size: 32px;
    }

    .how-it-works-steps-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 20px;
    }

    .step-image-container {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 40px 15px;
    }

    .how-it-works-title {
        font-size: 28px;
    }

    .how-it-works-steps-container {
        grid-template-columns: 1fr; /* 1 column on smaller phones */
        gap: 15px;
    }

    .step-image-container {
        height: 120px;
    }
}
