* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(180deg, #2E2E2E 0%, #000000 100%);
    border-radius: 0px 0px 0px 0px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    width: 100%;
}


.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 1000px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}


.main-content {
    position: relative;
    z-index: 2;
    padding-left: 189px;
    padding-top: 200px;
}


.title {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 90px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.title-red {
    color: #FF2C2C;
}

.title-white {
    color: #FFFFFF;
}


.subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #E8E8E8;
    line-height: 36px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 12px;
}


.cta-button {
    display: inline-block;
    background: #FF2C2C;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.3);
    border-radius: 77px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #FFFFFF;
    line-height: 110px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
    margin-top: 94px;
    padding: 0 80px;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #E02525;
}


.footer {
    position: absolute;
    left: 188px;
    bottom: 190px;
    z-index: 2;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: #DFDFDF;
    line-height: 36px;
    font-style: normal;
    text-transform: none;
    -webkit-text-stroke: 1px #DFDFDF;
}

.footer a {
    color: #DFDFDF;
    text-decoration: none;
    -webkit-text-stroke: 1px #DFDFDF;
}

.footer a:hover {
    color: #FFFFFF;
    -webkit-text-stroke: 1px #FFFFFF;
}

.footer span {
    color: #DFDFDF;
    margin-left: 39px;
    margin-right: 39px;
    -webkit-text-stroke: 1px #DFDFDF;
}



@media screen and (max-width: 1440px) {
    .main-content {
        padding-left: 120px;
        padding-top: 160px;
    }

    .hero-image {
        max-width: 800px;
    }

    .footer {
        left: 120px;
        bottom: 140px;
    }
}

@media screen and (max-width: 1024px) {
    .main-content {
        padding-left: 60px;
        padding-top: 120px;
    }

    .title {
        font-size: 48px;
        line-height: 72px;
    }

    .subtitle {
        font-size: 22px;
        line-height: 30px;
    }

    .cta-button {
        font-size: 36px;
        line-height: 80px;
        padding: 0 60px;
        margin-top: 60px;
    }

    .hero-image {
        max-width: 550px;
    }

    .footer {
        left: 60px;
        bottom: 100px;
        font-size: 24px;
        line-height: 30px;
    }
}

@media screen and (max-width: 768px) {
    .main-content {
        padding-left: 40px;
        padding-top: 100px;
        padding-right: 20px;
    }

    .title {
        font-size: 36px;
        line-height: 54px;
        text-align: left;
    }

    .subtitle {
        font-size: 18px;
        line-height: 26px;
        margin-top: 8px;
    }

    .cta-button {
        font-size: 28px;
        line-height: 60px;
        border-radius: 40px;
        padding: 0 50px;
        margin-top: 40px;
    }

    .hero-image {
        max-width: 380px;
        opacity: 0.5;
    }

    .footer {
        left: 40px;
        bottom: 60px;
        font-size: 18px;
        line-height: 24px;
    }
}

@media screen and (max-width: 480px) {
    .main-content {
        padding-left: 24px;
        padding-top: 60px;
        padding-right: 16px;
    }

    .title {
        font-size: 28px;
        line-height: 40px;
    }

    .subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-top: 6px;
    }

    .cta-button {
        font-size: 22px;
        line-height: 50px;
        border-radius: 30px;
        padding: 0 40px;
        margin-top: 30px;
    }

    .hero-image {
        max-width: 260px;
        opacity: 0.3;
    }

    .footer {
        left: 24px;
        bottom: 40px;
        font-size: 15px;
        line-height: 20px;
    }
}
