body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
} 

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
     padding: 10px 0;
}



.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.price {
    font-size: 2em;
    color: #0073e6;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.features li {
    /*margin: 31px 53px;*/
    text-align:center;
    justify-content:center;
    font-size: 1em;
}

.cta-btn {
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #005bb5;
}

.featured {
    border: 2px solid #0073e6;
    background-color: #e6f7ff;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #3498db;
    overflow: hidden;
}

#videoCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.card {
    background-color: #0F0E1E;
    width: 100%;
    max-width: 450px;
}

.pricing-card h2 {
    margin-bottom: 10px;
}

.pricing-card p {
    margin-bottom: 20px;
    font-size: 14px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 24px;
    font-weight: bold;
}

.pricing-card .price-period {
    font-size: 14px;
}

.pricing-card .save {
    color: #007bff;
}

.pricing-card .button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.pri {
    color: white;
    
}

.table-container {
    max-width: 100%;
    margin: 50px auto;
    overflow-x: auto;
    background-color: #0F0E1E;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

thead th {
   
    font-weight: bold;
    padding: 12px;
    text-align: center;
}

tbody td, thead th {
    border: 2px solid #0F0E1E;
    padding: 10px;
    vertical-align: middle;
}

tbody td {
    text-align: center;
}

tbody tr:nth-child(even) {
    background-color: #0F0E1E;
    color: #FFF;
}

.check {
    color: #4caf50;
    font-size: 1.2em;
    font-weight: bold;
}

.x {
    color: #f44336;
    font-size: 1.2em;
    font-weight: bold;
}

.thfeature {
    text-align: left;
    padding: 15px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-card {
        max-width: 240px;
    }

    .card {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .container2 {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
    }

    .img {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 15px;
    }

    .pricing-card .price {
        font-size: 20px;
    }

    .pricing-card h2 {
        font-size: 18px;
    }

    .pricing-card ul li {
        font-size: 14px;
    }

    .cta-btn {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}
