@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@400&display=swap');

:root {
    --primary-color: #0057ff;
    --text-dark: #1d1d1f;
    --text-light: #ffffff;
    --text-gray: #8c8c8c;
    --bg-light: #ffffff;
    --bg-gray: #f8f8f8;
    --border-color: #e9e9e9;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

section {
    padding: 60px 0;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-dark {
    background-color: #242424;
    color: var(--text-light);
}

.btn-dark:hover {
    background-color: #3a3a3a;
}

#cta-form-1 {
    background-image: url('../images/blueblockbg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#cta-form-2, #legal {
    background-image: url('../images/blueblockbg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6; /* увеличено для видимости */
    overflow: hidden;
    background-color: transparent;
    background-image: url('../images/blueblockbg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 992px) {
    h2 {
        font-size: 36px;
    }
    section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 28px;
    }
}
