 /* Package Cards */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .package-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            margin-top: 3px !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .package-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .package-name {
            /* font-size: 1.5rem; */
            font-weight: 600;
            margin-top: 3px !important;
            color: #D9063C;
            text-align: center;
            margin-bottom: 1px;
        }

        .package-price {
            /* font-size: 1.1rem; */
            color: #666;
            text-align: center;
            margin-bottom: 2px;
        }

        .package-subtitle {
            font-size: 1.1rem;
            margin-top: 3px !important;
            font-weight: 600;
            color: #333;
            text-align: center;
            margin-bottom: 2px;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 10px 0;
        }

        .features-list li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            /* font-size: ; */
            line-height: 1.5;
        }

        .feature-included {
            color: #333;
        }

        .feature-excluded {
            color: #999;
        }

        .check-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #4caf50;
            color: #4caf50;
            font-weight: bold;
            margin-right: 10px;
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .cross-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #D9063C;
            color: #D9063C;
            font-weight: bold;
            margin-right: 10px;
            font-size: 0.75rem;
            flex-shrink: 0;
        }


        .cta-button {
            width: 100%;
            background: #25d366;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.3s ease;
        }

        .cta-button:hover {
            background: #20ba56;
        }

        .cta-button svg {
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Hosting Plans */
        .hosting-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .hosting-card {
            background: white;
            border: 3px solid #4caf50;
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.3s ease;
        }

        .hosting-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
        }

        .hosting-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a2e;
            text-align: center;
            margin-bottom: 10px;
        }

        .hosting-price {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a2e;
            text-align: center;
            margin-bottom: 30px;
        }

        .hosting-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hosting-features li {
            padding: 10px 0;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #333;
            position: relative;
            padding-left: 25px;
        }

        .hosting-features li:before {
            content: "â€¢";
            position: absolute;
            left: 0;
            color: #1a1a2e;
            font-weight: bold;
            font-size: 1.5rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {

            .packages-grid,
            .hosting-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 20px 20px;
            }

            .package-card,
            .hosting-card {
                padding: 30px 20px;
            }
        }


.counter-item  a {
  color: #D9063C;
}

.counter-item  i {
  color: #D9063C;
}
