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

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0b0b;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: #b8f24a;
    color: #111111;
}

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

.btn-outline {
    border: 1px solid #b8f24a;
    color: #b8f24a;
}

.btn-outline:hover {
    background: #b8f24a;
    color: #111111;
}

section {
    position: relative;
}