body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

header {
    background-color: #fff;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

button.download {
    background-color: #6200ee;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 153.6% */
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px 40px 0px;
    text-align: center;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero h1 {
    color: #000;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px; /* 112.5% */
    letter-spacing: -2px;
    margin: 0;
    max-width: 720px;
}

p {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 160% */
}

.stars {
    display: flex;
    padding-left: 4px;
    align-items: center;
    gap: 0px;
    flex-direction: column;
}

button.cta {
    background-color: #6200ee;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
    border: none;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 64px;
    cursor: pointer;
}

.cta-info {
    margin-top: 10px;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 161.345% */
}

.esim, .download {
    background-color: #F8F7FF;
    border-radius: 24px;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    padding: 40px 20px 0px 20px;
    flex-direction: column;
    align-items: center;
}

.designed-for {
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
}

.download img {
    max-width: 200px;
    margin-top: 32px;
}

.gray {
    color: #888;
}

.download-buttons {
    padding: 24px;
}

.download-buttons a {
    text-decoration: none;
    padding: 8px;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature p {
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 133.333% */
}

.first svg {
    width: 48px;
    height: 48px;
}

.howto {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.second {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    background-color: #fff;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    text-align: center;
}

footer a {
    color: black;
    padding: 16px;
}

footer p {
    margin: 10px 0;
}

.socials {
    margin-top: 20px;
}

.socials a {
    margin: 0 10px;
}

h3 {
    color: #888;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 100% */
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2 {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px; /* 125% */
    letter-spacing: -1px;
    margin: 0;
}



@media (min-width: 768px) {
    .hero h1 {
        font-size: 64px;
        line-height: 72px;
    }

    p {
        font-size: 20px;
        line-height: 32px;
    }

    .esim, .download {
        padding: 60px 120px 0px 120px;
    }

    .designed-for {
        padding: 60px 120px;
    }

    .download img {
        max-width: 300px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature p {
        font-size: 24px;
        line-height: 32px;
    }

    .first svg {
        width: 88px;
        height: 88px;
    }

    .howto {
        grid-template-columns: repeat(2, 1fr);
    }

    h2 {
        font-size: 48px;
        line-height: 56px;
    }

}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 80px;
        line-height: 90px;
    }

    .esim, .download {
        padding: 60px 240px 0px 240px;
    }

    .designed-for {
        padding: 60px 240px;
    }

    .download img {
        max-width: 400px;
    }

    .howto {
        grid-template-columns: repeat(3, 1fr);
    }

    .stars {
        flex-direction: row;
        gap: 16px;
    }

}