/* Сброс стилей браузера и базовые стили */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0; padding: 0; border: 0; font-size: 100%;
    font: inherit; vertical-align: baseline;
    box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #45565f;
    color: #232728;
    min-height: 100vh;
    font-size: 18px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a {
    color: #e46b13;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus { color: #a14c0e; text-decoration: underline; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
.gp-main { min-height: 60vh; }

/* Header */
.gp-header {
    background: #37474f;
    box-shadow: 0 2px 14px rgba(30,40,50,0.08);
    width: 100%;
}
.gp-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 104px;
    position: relative;
}
.gp-header__logo img {
    height: 66px;
    width: auto;
    display: block;
}
.gp-header__nav ul {
    display: flex;
    gap: 32px;
}
.gp-header__nav a {
    font-weight: 500;
    color: #fff;
    padding: 6px 0;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    transition: color 0.15s;
    position: relative;
}
.gp-header__nav a:after {
    content: '';
    display: block;
    margin: 2px auto 0;
    width: 0;
    height: 2px;
    background: #e46b13;
    transition: width 0.2s;
}
.gp-header__nav a:hover:after,
.gp-header__nav a:focus:after {
    width: 70%;
}
.gp-header__burger {
    display: none;
    background: none;
    border: none;
    width: 40px; height: 40px;
    cursor: pointer;
    margin-left: 16px;
    position: relative;
}
.gp-header__burger span,
.gp-header__burger span:before,
.gp-header__burger span:after {
    display: block;
    position: absolute;
    height: 4px; width: 28px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.2s;
}
.gp-header__burger span {
    top: 50%; left: 6px; margin-top: -2px;
}
.gp-header__burger span:before {
    content: '';
    top: -10px; left: 0;
}
.gp-header__burger span:after {
    content: '';
    top: 10px; left: 0;
}

/* Адаптив */
@media (max-width: 900px) {
    .gp-header__container {
        padding: 0 16px;
        height: 76px;
    }
    .gp-header__logo img {
        height: 48px;
    }
    .gp-header__nav ul {
        gap: 18px;
    }
    body { font-size: 16px; }
}
@media (max-width: 700px) {
    .gp-header__container {
        height: 64px;
    }
    .gp-header__nav {
        position: absolute;
        right: 0;
        top: 64px;
        background: #37474f;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 24px rgba(50,70,100,0.18);
        padding: 18px 0;
        width: 180px;
        display: none;
        flex-direction: column;
        z-index: 22;
    }
    .gp-header__nav.open { display: flex; }
    .gp-header__nav ul {
        flex-direction: column;
        gap: 8px;
    }
    .gp-header__burger { display: block; }
}
/* Конец блока стилей для header и body */
/* Footer */
.gp-footer {
    background: #303f47;
    color: #b0bac3;
    padding: 40px 0 24px 0;
    font-size: 15px;
    margin-top: 40px;
}
.gp-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.gp-footer__menu ul {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.gp-footer__menu a {
    color: #b0bac3;
    font-weight: 400;
    font-size: 1em;
    letter-spacing: 0.02em;
}
.gp-footer__menu a:hover,
.gp-footer__menu a:focus {
    color: #e46b13;
    text-decoration: underline;
}
.gp-footer__social {
    display: flex;
    gap: 16px;
}
.gp-footer__icon {
    display: inline-block;
    width: 28px; height: 28px;
    background-size: cover;
    opacity: 0.75;
    transition: opacity 0.2s;
}
.gp-footer__icon.vk { background-image: url('/img/vk.webp'); }
.gp-footer__icon.tg { background-image: url('/img/tg.webp'); }
.gp-footer__icon:hover { opacity: 1; }
.gp-footer__copyright {
    font-size: 0.97em;
    color: #a2aeb6;
    margin-top: 10px;
    line-height: 1.4;
    text-align: right;
    min-width: 220px;
}

@media (max-width: 900px) {
    .gp-footer__container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }
    .gp-footer__copyright { text-align: left; }
    .gp-footer__menu ul { gap: 18px; }
}
/* Hero */
.gp-hero {
    background: linear-gradient(120deg, #45565f 70%, #e46b13 220%);
    padding: 48px 0 40px 0;
    color: #fff;
    text-align: center;
}
.gp-hero__inner {
    max-width: 800px;
    margin: 0 auto;
}
.gp-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}
.gp-hero p {
    font-size: 1.25rem;
    color: #f5cbaa;
}

/* Горячие новинки */
.gp-hot {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(44, 54, 68, 0.06);
    max-width: 1200px;
    margin: 28px auto 0 auto;
    padding: 22px 24px 18px 24px;
}
.gp-hot__title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #e46b13;
}
.gp-hot__list {
    display: flex;
    gap: 28px;
    overflow-x: auto;
}
.gp-hot__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 132px;
    text-align: center;
    text-decoration: none;
    color: #232728;
    transition: box-shadow 0.17s, transform 0.15s;
    border-radius: 12px;
    padding: 0 2px;
}
.gp-hot__item img {
    border-radius: 10px;
    width: 110px;
    height: 70px;
    object-fit: cover;
    box-shadow: 0 1px 4px rgba(36,50,70,0.10);
}
.gp-hot__item:hover, .gp-hot__item:focus {
    box-shadow: 0 2px 12px rgba(228,107,19,0.15);
    transform: translateY(-2px) scale(1.04);
}
.gp-hot__name {
    margin-top: 9px;
    font-size: 1em;
    font-weight: 500;
    color: #37474f;
}

/* Две колонки: новости + топ игр */
.gp-columns {
    display: flex;
    align-items: flex-start;
    gap: 38px;
    max-width: 1200px;
    margin: 38px auto 0 auto;
}
.gp-news {
    flex: 2 2 0;
}
.gp-news__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 10px;
}
.gp-news__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f6f8fa;
    border-radius: 11px;
    padding: 13px 15px;
    box-shadow: 0 2px 10px rgba(60, 80, 100, 0.03);
}
.gp-news__item img {
    width: 88px;
    height: 56px;
    object-fit: cover;
    border-radius: 7px;
}
.gp-news__item a {
    font-weight: 600;
    color: #e46b13;
    font-size: 1.05em;
    margin-bottom: 5px;
    display: inline-block;
}
.gp-news__item p {
    color: #45565f;
    font-size: 0.99em;
}
.gp-news__more {
    margin-top: 22px;
}
.gp-news__more a {
    color: #45565f;
    font-weight: 500;
}
.gp-aside {
    flex: 1 1 0;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 10px rgba(44, 54, 68, 0.09);
    padding: 22px 19px;
}
.gp-aside h2 {
    font-size: 1.17rem;
    color: #e46b13;
    margin-bottom: 12px;
    font-weight: 600;
}
.gp-aside__games {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.gp-aside__games li {
    margin-bottom: 13px;
}
.gp-aside__games a {
    display: flex;
    align-items: center;
    color: #37474f;
    font-weight: 500;
    font-size: 1em;
}
.gp-aside__games img {
    width: 38px; height: 38px; object-fit: cover; border-radius: 7px; margin-right: 9px;
}
.gp-aside__all a {
    color: #e46b13;
    font-size: 1.01em;
    font-weight: 500;
}

/* База данных */
.gp-db {
    margin: 52px auto 0 auto;
    max-width: 1200px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(44, 54, 68, 0.07);
    padding: 28px 24px;
}
.gp-db h2 {
    color: #e46b13;
    font-size: 1.28rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.gp-db__summary {
    display: flex;
    gap: 36px;
    margin-bottom: 9px;
    font-size: 1.05em;
}
.gp-db__summary div b { color: #37474f; }
.gp-db__desc {
    margin-bottom: 16px;
    color: #37474f;
    font-size: 1em;
}
.gp-db__search {
    display: flex;
    gap: 7px;
    max-width: 400px;
}
.gp-db__search input {
    flex: 1 1 0;
    padding: 8px 12px;
    border: 1px solid #ccd4d9;
    border-radius: 6px;
    font-size: 1em;
    outline: none;
    background: #f7f9fb;
    color: #232728;
}
.gp-db__search button {
    padding: 8px 18px;
    background: #e46b13;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.17s;
}
.gp-db__search button:hover { background: #c45910; }

/* О проекте */
.gp-about {
    margin: 48px auto 0 auto;
    max-width: 900px;
    background: #f8f8fb;
    border-radius: 16px;
    padding: 28px 26px 18px 26px;
    box-shadow: 0 2px 12px rgba(60, 80, 100, 0.07);
    color: #37474f;
}
.gp-about h2 {
    color: #e46b13;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 13px;
}
.gp-about p {
    font-size: 1.06em;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .gp-columns {
        flex-direction: column;
        gap: 22px;
    }
    .gp-hot__list { gap: 13px; }
}
@media (max-width: 600px) {
    .gp-hero { padding: 28px 0 24px 0; }
    .gp-hero h1 { font-size: 1.38rem; }
    .gp-hot { padding: 13px 8px 7px 8px; }
    .gp-hot__item img { width: 74px; height: 46px; }
    .gp-news__item img { width: 48px; height: 32px; }
    .gp-aside { padding: 14px 8px; }
    .gp-db { padding: 14px 6px; }
    .gp-about { padding: 12px 6px; }
}
/* Страница новостей */
.gp-news-page {
    max-width: 1200px;
    margin: 34px auto 0 auto;
    padding: 0 16px;
}
.gp-news-page h1 {
    font-size: 2rem;
    color: #e46b13;
    margin-bottom: 26px;
    font-weight: 700;
}
.gp-news-page__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.gp-news-page__item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: #f8f8fa;
    border-radius: 13px;
    box-shadow: 0 2px 9px rgba(36,54,70,0.05);
    padding: 14px 22px 14px 14px;
    transition: box-shadow 0.14s;
}
.gp-news-page__item:hover {
    box-shadow: 0 4px 16px rgba(228,107,19,0.08);
}
.gp-news-page__item img {
    width: 110px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.gp-news-page__item a {
    font-size: 1.12em;
    color: #37474f;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s;
}
.gp-news-page__item a:hover,
.gp-news-page__item a:focus {
    color: #e46b13;
    text-decoration: underline;
}
.gp-news-page__meta {
    font-size: 0.97em;
    color: #b0bac3;
    margin: 2px 0 7px 0;
}

/* Пагинация */
.gp-news-page__paging {
    max-width: 1200px;
    margin: 32px auto 0 auto;
    padding: 0 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 1.05em;
}
.gp-news-page__paging a {
    color: #e46b13;
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 5px;
    transition: background 0.14s;
}
.gp-news-page__paging a:hover {
    background: #ffe7cf;
    text-decoration: underline;
}
.gp-news-page__paging span {
    font-weight: 700;
    color: #37474f;
    padding: 2px 10px;
    border-radius: 5px;
    background: #f5f6f8;
}

/* Промо-блок с overbetting.ru */
.gp-news-promo {
    margin: 42px auto 0 auto;
    max-width: 900px;
    background: #f1f6f9;
    color: #44525a;
    border-radius: 12px;
    font-size: 1.07em;
    padding: 17px 22px;
    box-shadow: 0 2px 9px rgba(36,54,70,0.04);
    text-align: center;
}
.gp-news-promo a {
    color: #e46b13;
    font-weight: 500;
    text-decoration: underline dotted;
}
.gp-news-promo a:hover {
    color: #a14c0e;
    text-decoration: underline;
}

/* Адаптив */
@media (max-width: 750px) {
    .gp-news-page__item {
        flex-direction: column;
        align-items: stretch;
        padding: 11px 9px 11px 9px;
    }
    .gp-news-page__item img {
        width: 100%;
        max-width: 420px;
        height: 40vw;
        min-height: 54px;
        margin-bottom: 7px;
    }
}
@media (max-width: 500px) {
    .gp-news-page h1 { font-size: 1.18rem; }
    .gp-news-promo { padding: 11px 7px; font-size: 0.98em; }
}
.gp-games {
    max-width: 1200px;
    margin: 38px auto 0 auto;
    padding: 0 16px 34px 16px;
}
.gp-games h1 {
    font-size: 2rem;
    color: #e46b13;
    margin-bottom: 20px;
    font-weight: 700;
}
.gp-games__summary {
    color: #37474f;
    font-size: 1.09em;
    margin-bottom: 22px;
}
.gp-games__search {
    display: flex;
    gap: 8px;
    max-width: 380px;
    margin-bottom: 24px;
}
.gp-games__search input {
    flex: 1 1 0;
    padding: 8px 12px;
    border: 1px solid #ccd4d9;
    border-radius: 6px;
    font-size: 1em;
    background: #f7f9fb;
    color: #232728;
}
.gp-games__search button {
    padding: 8px 18px;
    background: #e46b13;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.gp-games__search button:hover { background: #c45910; }

.gp-games__filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
    font-size: 1.02em;
}
.gp-games__filters span {
    color: #37474f;
    font-weight: 500;
}
.gp-games__filters a {
    color: #37474f;
    background: #eceff2;
    padding: 4px 13px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.16s, color 0.13s;
    margin-bottom: 4px;
}
.gp-games__filters a.active,
.gp-games__filters a:hover {
    background: #e46b13;
    color: #fff;
}

.gp-games__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-top: 8px;
    margin-bottom: 36px;
}

.gp-game-card {
    background: #f8f8fa;
    border-radius: 13px;
    box-shadow: 0 2px 8px rgba(36,54,70,0.06);
    overflow: hidden;
    transition: box-shadow 0.15s, transform 0.12s;
}
.gp-game-card:hover {
    box-shadow: 0 6px 20px rgba(228,107,19,0.12);
    transform: translateY(-2px) scale(1.015);
}
.gp-game-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.gp-game-card img {
    width: 100%;
    height: 134px;
    object-fit: cover;
    background: #e3e7ee;
}
.gp-game-card__info {
    padding: 12px 14px 13px 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.gp-game-card__title {
    font-size: 1.12em;
    font-weight: 700;
    color: #37474f;
    margin-bottom: 2px;
}
.gp-game-card__genre {
    font-size: 0.99em;
    color: #8a97a3;
}
.gp-game-card__rate {
    font-size: 0.98em;
    color: #e46b13;
    font-weight: 600;
    margin-top: 4px;
}

/* Пагинация */
.gp-games__paging {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 1.05em;
    margin: 16px 0 0 0;
}
.gp-games__paging a {
    color: #e46b13;
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 5px;
    transition: background 0.14s;
}
.gp-games__paging a:hover {
    background: #ffe7cf;
    text-decoration: underline;
}
.gp-games__paging span {
    font-weight: 700;
    color: #37474f;
    padding: 2px 10px;
    border-radius: 5px;
    background: #f5f6f8;
}

@media (max-width: 700px) {
    .gp-games h1 { font-size: 1.25rem; }
    .gp-games__list { grid-template-columns: 1fr; gap: 14px; }
    .gp-game-card img { height: 26vw; min-height: 70px; }
    .gp-game-card__info { padding: 7px 7px 8px 7px; gap: 5px; }
}
.gp-hardware {
    max-width: 1200px;
    margin: 38px auto 0 auto;
    padding: 0 16px 34px 16px;
}
.gp-hardware h1 {
    font-size: 2rem;
    color: #e46b13;
    margin-bottom: 22px;
    font-weight: 700;
}
.gp-hardware__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 30px;
    margin-bottom: 38px;
}
.gp-hardware__item {
    display: flex;
    gap: 19px;
    background: #f8f8fa;
    border-radius: 13px;
    box-shadow: 0 2px 8px rgba(36,54,70,0.06);
    padding: 14px 18px;
    align-items: flex-start;
    transition: box-shadow 0.15s;
}
.gp-hardware__item:hover {
    box-shadow: 0 4px 16px rgba(228,107,19,0.12);
}
.gp-hardware__item img {
    width: 94px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #eceff2;
}
.gp-hardware__item a {
    color: #37474f;
    font-size: 1.09em;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.17s;
}
.gp-hardware__item a:hover { color: #e46b13; text-decoration: underline; }
.gp-hardware__meta {
    font-size: 0.98em;
    color: #b0bac3;
    margin: 2px 0 7px 0;
}
.gp-hardware__item p { color: #45565f; font-size: 1em; }

.gp-hardware__sidebar {
    max-width: 400px;
    margin: 0 auto 40px auto;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 10px rgba(44, 54, 68, 0.09);
    padding: 24px 20px 17px 20px;
}
.gp-hardware__sidebar h2 {
    color: #e46b13;
    font-size: 1.12rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.gp-hardware__sidebar ul { list-style: none; padding: 0; margin: 0; }
.gp-hardware__sidebar li {
    margin-bottom: 13px;
    display: flex; align-items: center;
}
.gp-hardware__sidebar a {
    color: #37474f;
    font-weight: 500;
    display: flex; align-items: center;
    font-size: 1em;
    gap: 9px;
    text-decoration: none;
}
.gp-hardware__sidebar img {
    width: 38px; height: 38px; object-fit: cover; border-radius: 7px;
}

.gp-hardware__feedback {
    max-width: 600px;
    margin: 40px auto 0 auto;
    background: #f1f6f9;
    border-radius: 13px;
    box-shadow: 0 2px 9px rgba(36,54,70,0.04);
    padding: 22px 28px 16px 28px;
}
.gp-hardware__feedback h2 {
    color: #e46b13;
    font-size: 1.15rem;
    margin-bottom: 14px;
    font-weight: 600;
}
.gp-hardware__feedback form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.gp-hardware__feedback input,
.gp-hardware__feedback textarea {
    border: 1px solid #ccd4d9;
    border-radius: 7px;
    padding: 9px 13px;
    font-size: 1em;
    background: #fff;
    color: #232728;
    resize: none;
}
.gp-hardware__feedback textarea { min-height: 44px; }
.gp-hardware__feedback button {
    align-self: flex-start;
    background: #e46b13;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    padding: 8px 20px;
    margin-top: 2px;
    cursor: pointer;
    transition: background 0.15s;
}
.gp-hardware__feedback button:hover { background: #c45910; }
.gp-hardware__desc {
    color: #44525a;
    font-size: 1.01em;
}

@media (max-width: 900px) {
    .gp-hardware__list { grid-template-columns: 1fr; }
    .gp-hardware__item { flex-direction: column; gap: 12px; align-items: stretch; }
    .gp-hardware__item img { width: 100%; height: 28vw; min-height: 60px; }
    .gp-hardware__sidebar { max-width: 100%; }
    .gp-hardware__feedback { padding: 14px 8px 11px 8px; }
}
.gp-aboutpage {
    max-width: 1200px;
    margin: 38px auto 0 auto;
    padding: 0 16px 38px 16px;
}
.gp-aboutpage h1 {
    font-size: 2rem;
    color: #e46b13;
    margin-bottom: 22px;
    font-weight: 700;
}
.gp-aboutpage__intro {
    background: #f8f8fb;
    border-radius: 13px;
    box-shadow: 0 2px 10px rgba(44, 54, 68, 0.07);
    padding: 22px 20px 14px 20px;
    font-size: 1.15em;
    margin-bottom: 26px;
    color: #37474f;
}
.gp-aboutpage__values {
    display: flex;
    gap: 38px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.gp-aboutpage__values > div {
    flex: 1 1 340px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 10px rgba(44, 54, 68, 0.07);
    padding: 22px 20px 14px 20px;
    color: #37474f;
}
.gp-aboutpage__values h2 {
    color: #e46b13;
    font-size: 1.11rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.gp-aboutpage__values ul {
    margin: 0; padding-left: 22px;
    font-size: 1em;
}
.gp-aboutpage__values li { margin-bottom: 8px; }

.gp-aboutpage__team {
    margin-bottom: 34px;
}
.gp-aboutpage__team h2 {
    color: #e46b13;
    font-size: 1.11rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.gp-aboutpage__team-list {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}
.gp-aboutpage__member {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 10px rgba(44, 54, 68, 0.07);
    padding: 18px 18px 9px 18px;
    width: 158px;
    text-align: center;
}
.gp-aboutpage__member img {
    width: 80px; height: 80px; object-fit: cover; border-radius: 50%; margin-bottom: 8px;
    background: #eceff2;
}
.gp-aboutpage__member span {
    color: #37474f;
    font-size: 1.01em;
}
.gp-aboutpage__member small {
    color: #a2aeb6;
    font-size: 0.92em;
}

.gp-aboutpage__features {
    margin-bottom: 34px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 10px rgba(44, 54, 68, 0.07);
    padding: 22px 20px 18px 20px;
    color: #37474f;
}
.gp-aboutpage__features h2 {
    color: #e46b13;
    font-size: 1.11rem;
    font-weight: 600;
    margin-bottom: 9px;
}
.gp-aboutpage__features ul {
    padding-left: 22px;
    margin: 0;
    font-size: 1em;
}
.gp-aboutpage__features li { margin-bottom: 8px; }

.gp-aboutpage__contact {
    max-width: 600px;
    margin: 0 auto;
    background: #f1f6f9;
    border-radius: 13px;
    box-shadow: 0 2px 9px rgba(36,54,70,0.04);
    padding: 22px 28px 18px 28px;
}
.gp-aboutpage__contact h2 {
    color: #e46b13;
    font-size: 1.13rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.gp-aboutpage__contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.gp-aboutpage__contact input,
.gp-aboutpage__contact textarea {
    border: 1px solid #ccd4d9;
    border-radius: 7px;
    padding: 9px 13px;
    font-size: 1em;
    background: #fff;
    color: #232728;
    resize: none;
}
.gp-aboutpage__contact textarea { min-height: 44px; }
.gp-aboutpage__contact button {
    align-self: flex-start;
    background: #e46b13;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    padding: 8px 20px;
    margin-top: 2px;
    cursor: pointer;
    transition: background 0.15s;
}
.gp-aboutpage__contact button:hover { background: #c45910; }
.gp-aboutpage__info {
    color: #44525a;
    font-size: 1.01em;
}

@media (max-width: 950px) {
    .gp-aboutpage__values { flex-direction: column; gap: 17px; }
    .gp-aboutpage__team-list { gap: 11px; }
    .gp-aboutpage__member { width: 100%; max-width: 180px; }
}
@media (max-width: 600px) {
    .gp-aboutpage h1 { font-size: 1.25rem; }
    .gp-aboutpage__features, .gp-aboutpage__intro, .gp-aboutpage__values > div { padding: 13px 8px 10px 8px; }
    .gp-aboutpage__team-list { gap: 5px; }
    .gp-aboutpage__member { padding: 10px 6px 8px 6px; }
    .gp-aboutpage__contact { padding: 14px 8px 11px 8px; }
}
