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

body {
    font-family: 'Pontano Sans';
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: linear-gradient(180deg, #FFDCC0 0%, #FFFFFF 100%);
    background-repeat: no-repeat;
}

.background-image {
    position: absolute;
    top: -232px;
    left: -644px;
    width: 1536px;
    height: 100%;
    background-image: url('bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    z-index: 1;
}

.content {
    text-align: center;
    max-width: 742px;
    width: 100%;
}

.logo {
    width: 89px;
    height: 80px;
    margin-bottom: 180px;
    display: inline-block;
}

.title {
    font-family: 'Pontano Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 80px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #121212;
    margin-bottom: 40px;
}

.subtitle {
    width: 740px;
    max-width: 100%;
    height: 31px;
    font-family: 'Pontano Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: #414141;
    flex: none;
    order: 1;
    flex-grow: 0;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

.call-button {
    font-family: 'Pontano Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    background-color: #F77E22;
    color: #FFFFFF;
    padding: 20px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: none;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.call-button:hover {
    background-color: #E56D11;
    transform: translateY(-2px);
}

.call-button:active {
    transform: translateY(0);
}

/* Mobile styles */
@media (max-width: 768px) {
    .background-image {
        width: 531px;
        top: -86px;
        left: -232px;
    }

    .container {
        padding: 60px 20px;
    }

    .content {
        margin-top: -100px;
        max-width: 295px;
    }

    .logo {
        width: 44px;
        height: 40px;
        margin-bottom: 68px;
    }

    .title {
        font-size: 40px;
        margin-bottom: 20px;
    }   

    .subtitle {
        font-size: 16px;
        margin-bottom: 68px;
        padding: 0 10px;
    }

    .call-button {
        padding: 13px 81px;
        font-size: 14px;
    }
}

