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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #080806;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffc806;
    color: #080806;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    padding: 12px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 211, 57, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    line-height: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 211, 57, 0.6);
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .btn-primary {
        font-size: 18px;
        padding: 10px 24px;
    }
    .section-title {
        font-size: 28px;
    }
}
