.cta-section {
    width: 100%;
    padding: 10px 15px 30px 15px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.cta-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-btn {
    width: 100%;
    background-color: #E88597;
    color: black;
    font-size: 18px;
    font-weight: 800;
    padding: 18px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-align: center;
}

.order-btn:hover {
    background-color: #d67486;
}

.delivery-info-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}