.delivery-hero {
            background: 
                linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("../images/delivery1.png") 20% 15%/cover no-repeat;
            padding: 120px 0 80px 0;
            color: white;
            text-align: center;
        }
        .delivery-hero h1 {
            font-size: 42px;
            font-weight: 700;
        }
        .delivery-hero p {
            font-size: 18px;
            opacity: 0.9;
        }

        .delivery-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid transparent;
        }
        .delivery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            border-color: #eaeaea;
        }
        .delivery-card .price-tag {
            font-size: 32px;
            font-weight: 700;
            color: #0d6efd;
            margin: 15px 0;
        }
        .delivery-card .price-tag small {
            font-size: 16px;
            font-weight: 400;
            color: #6c757d;
        }
        .city-badge {
            background: #f0f6ff;
            color: #0d6efd;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            display: inline-block;
            margin: 5px;
            border: 1px solid rgba(13, 110, 253, 0.2);
            transition: 0.2s;
        }
        .city-badge:hover {
            background: #0d6efd;
            color: white;
            border-color: #0d6efd;
        }
        .note-block {
            background: #f8f9fa;
            border-left: 5px solid #0d6efd;
            padding: 20px 25px;
            border-radius: 16px;
            margin-top: 40px;
            font-size: 16px;
            color: #495057;
        }
        .note-block i {
            color: #0d6efd;
            margin-right: 10px;
            font-size: 24px;
        }