* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: Poppins, sans-serif;
    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
        url("https://i.pinimg.com/736x/9c/62/47/9c6247238677bd0752847ce85a7b52fd.jpg");

    background-size: cover;
    background-position: center;

    color: white;

    min-height: 100vh;

}

.container {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;

}

.left {

    flex: 1;

}

.right {

    flex: 1;

    text-align: center;

}

.right img {

    width: 100%;

    max-width: 650px;

    border-radius: 20px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .45);

    background: white;

}

.badge {

    display: inline-block;

    background: #3d7b35;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 14px;

    margin-bottom: 25px;

}

h1 {

    font-size: 65px;

    line-height: 1;

    color: #ffd34d;

}

h2 {

    margin-top: 15px;

    font-size: 34px;

    margin-bottom: 25px;

}

p {

    color: #ececec;

    line-height: 1.8;

    font-size: 18px;

    max-width: 650px;

}

.features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin: 40px 0;

}

.features div {

    background: rgba(255, 255, 255, .12);

    padding: 15px;

    border-radius: 10px;

    backdrop-filter: blur(10px);

}

#countdown {

    display: flex;

    gap: 18px;

    margin-bottom: 35px;

}

#countdown div {

    width: 95px;

    background: #ffffff15;

    padding: 15px;

    text-align: center;

    border-radius: 12px;

}

#countdown span {

    display: block;

    font-size: 36px;

    font-weight: 700;

}

.subscribe {

    display: flex;

    margin-bottom: 35px;

}

.subscribe input {

    flex: 1;

    padding: 16px;

    border: none;

    outline: none;

    border-radius: 10px 0 0 10px;

    font-size: 16px;

}

.subscribe button {

    border: none;

    padding: 16px 28px;

    background: #f4b400;

    color: #222;

    cursor: pointer;

    font-weight: 600;

    border-radius: 0 10px 10px 0;

}

.contact {

    line-height: 2;

    color: #ddd;

}

footer {

    text-align: center;

    padding: 20px;

    background: #00000055;

}

@media(max-width:960px) {

    .container {

        flex-direction: column-reverse;

        padding: 60px 0;

    }

    h1 {

        font-size: 48px;

    }

    h2 {

        font-size: 28px;

    }

    .features {

        grid-template-columns: 1fr;

    }

    #countdown {

        flex-wrap: wrap;

    }

}