* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    text-align: center;
    padding: 40px 20px;
}
.span{
    text-align: center;
}
h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan {
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease-in-out;
}

.plan:hover {
    transform: scale(1.05);
}

.plan-header {
    padding: 20px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.plan-header p {
    font-size: 14px;
    font-weight: normal;
}

.mobile {
    background: linear-gradient(to right, #1f3b99, #001f60);
}

.basic {
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    /* position: relative; */
}

.popular {
    border: 3px solid #8e2de2;
}

/* .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8e2de2;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
} */

.standard {
    background: linear-gradient(to right, #6a3093, #a044ff);
}

.premium {
    background: linear-gradient(to right, #d4145a, #ff4b2b);
}

.plan-details {
    font-weight: 550;
    padding: 20px;
    font-size: 14px;
    color: #333;
    text-align: left;
}

.plan-details p {
    font-size: 550;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.plan-details p:last-child {
    border-bottom: none;
}
button {
    width: 30%;
    padding: 20px;
    background: red;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

/* button:hover {
    background: darkred;
} */
.recaptcha{
    font-size: 15px;
    color: #737373;
}
.footer {
    margin: 10px;
    width: 100%;
    background-color:#f3f3f3;
    color: #757575;
    position: relative;
    /* z-index: 1; */
}

.footWidth {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    text-align: left;
}

.footLay {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0 0 0;
    
}

.footLay li {
    list-style: none;
}

.footList {
    width: 25%;
    margin-top: 10px;
}

.footLink {
    text-decoration: none;
    color: #757575;
    font-size: 0.8rem;
}

.footLink:hover {
    text-decoration: underline;

}