/* ======= Headings ======= */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #7658F7;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
}

.header {
    background: linear-gradient(135deg, #D6D0FF, #E8E4FF, #C0B3FF);
    color: white;
    padding: 60px 20px;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    position: relative;
}

.header img {
    padding: 20px;
    border-radius: 16px;
}

.header h1 {
    margin: 0;
    font-size: 48px;
}

.header p {
    color: #7658F7;
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    margin-top: 10px;
}

.content {
    text-align: left;
    /* max-width: 800px; */
    margin: 0 auto;
    font-size: 18px;
    animation: fadeInUp 1s ease-in-out;
    background: #f8f8f8;
    ;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.feature-box {
    background: #f8f8f8;
    margin: 15px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 320px;
    transition: transform 0.4s ease-in-out;
    color: #333;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cta {
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    text-align: center;
}

.cta.primary {
    background: linear-gradient(90deg, #FFB400, #FFA000);
    color: #333;
    box-shadow: 0px 4px 10px rgba(255, 180, 0, 0.3);
}

.cta.secondary {
    background: linear-gradient(90deg, #5737C2, #7658F7);
    color: #fff;
    box-shadow: 0px 4px 10px rgba(118, 88, 247, 0.3);
}

.cta.phone {
    background: linear-gradient(90deg, #28a745, #218838);
    color: #fff;
    box-shadow: 0px 4px 10px rgba(40, 167, 69, 0.3);
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}