/* ===== ABOUT PAGE (same style as products) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Заголовки секций */
.about-block h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    border-left: 4px solid #3CF626;
    padding-left: 15px;
}

body{
    background-color: black;
}

/* Текст */
.about-block p {
    color: #b5b5b5;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Серые блоки */
.about-block {
    background-color: #12161c;
    border: 1px solid #1e232b;
    padding: 30px;
    margin-bottom: 40px;
}

/* Список */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    color: #b5b5b5;
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3CF626;
}

/* Статистика */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.stat-item {
    background-color: #12161c;
    border: 1px solid #1e232b;
    padding: 30px;
    text-align: center;
}

.stat-number {
    font-size: 34px;
    color: #3CF626;
    display: block;
    margin-bottom: 5px;
}

.stat-text {
    color: #b0b0b0;
}
