/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Основные цвета */
    --primary-color: #3d3d3d;
    --primary-light: #444;
    --secondary-color: #10B981;
    --secondary-light: #34D399;
    
    /* Нейтральные цвета */
    --text-color: #3d3d3d;
    --text-light: #888;
    --background-color: #FAF8F6;
    --white: #fff;
    
    /* Дополнительные цвета */
    --accent-color: #BFAE9C;
    --accent-light: #FBBF24;
    
    /* Размеры и отступы */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
}

h1 {
    font-size: 44px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 32px;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

.btn,
.button,
input[type="submit"],
button {
    background: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.01em;
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.1s;
    box-shadow: none;
    text-decoration: none;
    outline: none;
    display: inline-block;
    cursor: pointer;
}

.btn:hover,
.button:hover,
input[type="submit"]:hover,
button:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.section {
    padding: var(--section-padding);
    background: none;
}

.text-center {
    text-align: center;
}

/* Медиа-запросы */
@media (max-width: 1024px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px 0;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }
    
    p {
        font-size: 15px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

::-webkit-scrollbar {
    width: 8px;
    background: #eee;
}

::-webkit-scrollbar-thumb {
    background: #d6d3ce;
    border-radius: 4px;
}