* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff7f3;
    color: #2d2d2d;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

header {
    padding: 1rem;
    text-align: center;
    background: url("../images/head-bg.png") 0 0 no-repeat;
    background-size: cover;
    position: relative;
    height: 56.25rem;
}

.logo-box {
    text-align: left;
}

.logo-box img {
    width: 12.5rem;
}

header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 1rem 0;
    margin-top: 11.875rem;
    line-height: normal;
}

header p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666666;
}

header .p1 {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 23.75rem;
}

header .p2 {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 20rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff6e4a;
    color: white;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.btn:hover {
    background: #ff4a24;
}

.stats img {
    width: 100%;
    display: block;
}

.phones img {
    width: 100%;
    display: block;
}


@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.downloads {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 3.125rem 0;
}

.download-btn {
    width: 480px;
    height: 414px;
    background: #FFFFFF;
    box-shadow: 0px 12px 14px 1px rgba(0, 0, 0, 0.16);
    border-radius: 39px 39px 39px 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 2.5rem;
    color: #000;
}

.download-btn img {
    width: 8rem;
    margin-bottom: 1.25rem;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1rem;
    color: #000;
}

footer a {
    color: #666;
    margin: 0 .3125rem;
}

footer a:hover {
    color: #333;
    text-decoration: underline;
}

@media (max-width: 768px) {
    header {
        height: auto;
    }

    header h1 {
        font-size: 1.5rem;
        margin-top: 1.875rem;
    }

    header .pic {
        display: none;
    }

    .download-btn {
        width: 40%;
        height: 6.25rem;
        border-radius: .625rem;
        font-size: 1rem;
    }

    .download-btn img {
        width: 3.125rem;
        margin-bottom: .625rem;
    }

}