   body {
        background: #f2fbff;
        font-family: 'Segoe UI', sans-serif
    }

    .section-title h1 {
        font-weight: 700
    }

    .pricing-card {
        background: #fff;
        border-radius: 20px;
        padding: 35px 30px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        transition: .4s;
        height: 100%;
        border-top: 5px solid #06A3DA;
    }

    .pricing-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 35px 80px rgba(6, 163, 218, 0.22);
    }

    .price {
        font-size: 38px;
        font-weight: 700;
        color: #06A3DA
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin-top: 20px
    }

    .feature-list li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px
    }

    .feature-list i {
        color: #06A3DA
    }

    .feature-list .off {
        color: #dc3545
    }

    .btn-order {
        background: linear-gradient(135deg, #06A3DA, #058bb8);
        color: #fff;
        border: none;
        border-radius: 30px;
        padding: 10px 25px;
        font-weight: 600
    }

    .btn-order:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(6, 163, 218, .45)
    }

    .contact-card {
        background: #06A3DA;
        color: #fff;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .12)
    }

    .contact-card input,
    .contact-card textarea,
    .contact-card select {
        border-radius: 10px
    }