@font-face {
    font-family: 'Vazirmatn';
    src: url('/font/Vazirmatn-Regular.woff2') format('woff2');
    font-display: swap;
}
* {
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif;
}
body {
    margin: 0;
    background-color: #F3F3EF;
}
.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}
.hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 4rem 1rem;
    gap: 2rem;
}
.hero .text {
    text-align: center;
}
.hero img {
    max-width: 100%;
    height: auto;
}
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
    }
    .hero .text {
        width: 50%;
        text-align: right;
    }
    .hero .image {
        width: 50%;
    }
}
.features {
    background-color: #fff;
    padding: 3rem 0;
}
.features .grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.features .item {
    text-align: center;
}
@media (min-width: 768px) {
    .features .grid {
        flex-direction: row;
    }
    .features .item {
        flex: 1;
    }
}

.cta {
    background-color: #4f46e5;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}
footer
{
    background-color: #4f46e5;
    color: #fff;
    text-align: center;
    padding:  1rem;
}
@media (min-width: 768px)
{
    .cta form {
        flex-direction: row;
    }
}
.icon{
    font-size:42px
}