.tagline {
            font-size: 1.3rem;
            color: #44ad5f;
            max-width: 700px;
            margin: 0 auto 25px;
            font-weight: 500;
        }
        
        .highlight {
            background: #cef1ce;
            color: #050505;
            padding: 3px 8px;
            border-radius: 5px;
            font-weight: 600;
        }
        
        .intro-section {
            background: #f8fbff;
            padding: 35px;
            border-radius: 12px;
            margin-bottom: 50px;
            border: 1px solid #e1ebff;
            position: relative;
            overflow: hidden;
        }
        
        .intro-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #14b405, #059111);
        }
        
        .intro-text {
            font-size: 1.15rem;
            color: #445577;
            line-height: 1.8;
        }
        
        .intro-text p {
            margin-bottom: 20px;
        }
        
        .contact-info {
            background: rgba(231, 27, 37);
            color: white;
            display: inline-flex;
            align-items: center;
            padding: 12px 25px;
            border-radius: 50px;
            margin-top: 15px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 27, 37);
        }
        
        .contact-info:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgb(221, 11, 22);
            background: rgb(221, 11, 22);
        }
        
        .contact-info i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .pricing-title {
            text-align: center;
            margin: 50px 0 40px;
            color: #1a3b7a;
            font-size: 2rem;
        }
        
        .pricing-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .pricing-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            width: calc((100% - 60px) / 3);
            box-shadow: 0 8px 25px rgba(0, 45, 150, 0.08);
            transition: all 0.4s ease;
            border: 1px solid #e6edff;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 45, 150, 0.15);
        }
        
        .card-header {
            background: linear-gradient(135deg, #0c8a0c, #08a115);
            color: white;
            text-align: center;
            padding: 25px 20px;
        }
        
        .duration {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .recommended {
            background: linear-gradient(135deg, #ff9d00, #ff6a00);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .price {
            font-size: 3.2rem;
            font-weight: 700;
            margin: 15px 0;
        }
        
        .price small {
            font-size: 1.2rem;
            font-weight: 400;
        }
        
        .price-desc {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .card-body {
            padding: 30px 25px;
            text-align: center;
        }
        
        .features {
            list-style: none;
            margin: 25px 0;
            text-align: left;
            padding: 0 15px;
        }
        
        .features li {
            padding: 10px 0;
            border-bottom: 1px dashed #e8f0ff;
            display: flex;
            align-items: flex-start;
        }
        
        .features li:last-child {
            border-bottom: none;
        }
        
        .features li i {
            color: #3a5fcd;
            margin-right: 10px;
            margin-top: 5px;
            font-size: 1.1rem;
        }
        
        .btn-contact {
            display: block;
            background: linear-gradient(135deg, #ec234f, #ce020d);
            color: white;
            text-align: center;
            padding: 14px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(58, 95, 205, 0.3);
        }
        
        .btn-contact:hover {
            background: linear-gradient(135deg, #ec234f, #ce020d);
            box-shadow: 0 6px 20px rgba(58, 95, 205, 0.4);
            transform: translateY(-2px);
        }
        
        .savings {
            color: #27ae60;
            font-weight: 600;
            margin-top: 10px;
            font-size: 1.1rem;
        }

        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 20px 20px 40px;
        }
        
     
        @media (max-width: 768px) {
            .intro-section {
                padding: 25px 20px;
            }
            
            .pricing-card {
                width: 100%;
            }
        }