body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
header {
    background-color: white;
    padding: 20px;
}
h1 {
    color: #222;
}
.cta-buttons {
    margin-top: 20px;
}
.cta-buttons img {
    width: 150px;
    margin: 10px;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}


.features img{
    width: 150px;
}



.feature {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
}
.copyright  {
     background: #3C338B;
    color: white;
    padding: 5px;
}
.social-icons {
    background: #4A3AFF;
    color: white;
    padding: 20px;
    margin-top: 40px;
}

.social-icons img {
    width: 30px;
    margin: 5px;
}
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
}
