body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Чистый хедер без линии и тени */
.br-header {
    background-color: #fff;
    padding: 12px 20px;
}

.br-header__container {
    max-width: 1200px;
    margin: 0 auto;
}

.br-header__logo {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
    color: #000;
    text-align: left;
}


.br-title-section {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.br-title-section__container {
    max-width: 900px;
    margin: 0 auto;
}

.br-title-section__title {
    font-size: 38px; /* было 28px */
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    color: #000;
}

.br-title-section__year {
    display: inline-block;
    font-size: 42px; /* было 30px */
    margin-top: 12px;
}

@media (max-width: 600px) {
    .br-title-section__title {
        font-size: 28px;
    }
    .br-title-section__year {
        font-size: 32px;
    }
}

.br-intro-text {
    padding: 30px 20px;
    background-color: #fff;
}

.br-intro-text__container {
    max-width: 800px;
    margin: 0 auto;
}

.br-intro-text__paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    text-align: left;
}


.br-rating-intro {
    padding: 50px 20px;
    background-color: #ffffff;
    color: #111;
}

.br-rating-intro__container {
    max-width: 800px;
    margin: 0 auto;
}

.br-rating-intro__title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.br-rating-intro__text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.br-rating-intro__link {
    color: #e63946;
    text-decoration: underline;
}


.br-bots-list__items {
    list-style-position: inside;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    counter-reset: item;
}

.br-bots-list__items li {
    counter-increment: item;
    margin-bottom: 10px;
    position: relative;
    font-weight: 400;
}

.br-bots-list__items li::marker {
    font-weight: bold;
    font-size: 18px;
}

.br-bots-list__items a {
    text-decoration: none;
    color: #f44336; /* красный цвет */
    font-weight: 500;
    transition: color 0.3s;
}

.br-bots-list__items a:hover {
    color: #d32f2f;
}
.br-bots-list__container {
    max-width: 800px;
    margin: 0 auto;
    /* убираем text-align: center */
}

.br-bots-list__items {
    margin-left: 40px; /* сдвигаем чуть вправо от контейнера */
    padding-left: 0;
    list-style-position: inside;
}


.br-bot-card {
    background: #fff;
    padding: 40px 20px;
    margin-bottom: 60px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.br-bot-card__container {
    max-width: 800px;
    margin: 0 auto;
}

.br-bot-card__header-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.br-bot-card__header-image img {
    display: block;
    max-width: 400px; /* или width: 300px; */
    width: 100%;
    height: auto;
    margin: 0 auto; /* Центрирование */
    border-radius: 12px;
    margin-bottom: 20px;
}

.br-bot-card__description {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
}

.br-bot-card__description h3 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 0;
}

.br-bot-card__description ul {
    margin: 10px 0 20px 20px;
    padding-left: 0;
}

.br-bot-card__examples {
    display: block;
    margin: 30px 0;
}

.br-bot-card__examples img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}


.br-bot-card__button-wrapper {
    text-align: center;
}

.br-bot-card__button-red {
    display: inline-block;
    padding: 14px 26px;
    background: #f22222;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.br-bot-card__button-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    transition: left 0.5s;
}

.br-bot-card__button-red:hover::before {
    left: 100%;
}

.br-bot-card__divider {
    margin-top: 40px;
    border: none;
    border-bottom: 1px solid #ccc;
}


.bot-compare-table {
    margin: 40px auto;
    padding: 0 20px;
    max-width: 900px;
    font-family: "Segoe UI", sans-serif;
}

.bot-compare-table h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.bot-compare-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.bot-compare-table th,
.bot-compare-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.bot-compare-table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.bot-compare-table tbody tr:hover {
    background-color: #f1f1f1;
}

.bot-compare-table th {
    font-weight: 600;
}

.bot-compare-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.bot-compare-table th, .bot-compare-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.bot-compare-table a {
    color: #000;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.bot-compare-table tr:hover {
    background-color: #f9f9f9;
}

.poll-container {
    max-width: 600px;
    margin: 50px auto;
    border: 2px solid #000;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.poll-container h3 {
    margin-top: 0;
}

.poll-option {
    margin-bottom: 10px;
}

.poll-bar {
    height: 6px;
    background: blue;
    margin: 4px 0;
}

.poll-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.poll-result span {
    font-size: 14px;
}

.vote-button {
    margin-top: 20px;
    background: #0050ff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}



.faq-section {
    background: #f5f5f5;
    padding: 40px 20px;
    max-width: 720px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 20px;
    font-weight: normal;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 15px;
    background: #fff;
}

.faq-item.open .faq-answer {
    padding: 12px 20px 16px;
    max-height: 300px;
}



.conclusion-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    color: #111;
}

.conclusion-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.conclusion-section p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.conclusion-section ol {
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.conclusion-section li {
    margin-bottom: 10px;
}



.site-footer {
    background-color: #111;
    color: #f1f1f1;
    padding: 30px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-top-links {
    font-size: 11px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.footer-top-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
}

.footer-top-links a:hover {
    text-decoration: underline;
}

.footer-main-text {
    font-size: 14px;
}

.footer-main-text a {
    color: #ff5e42;
    text-decoration: none;
}

.footer-main-text a:hover {
    text-decoration: underline;
}



.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    font-size: 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
    opacity: 0.8;
}


/* about */
.authors-section {
    background: linear-gradient(90deg, #7ed6df, #b8e994);
    padding: 60px 20px;
    min-height: 100vh;
    box-sizing: border-box;
    text-align: center;
}

.author {
    max-width: 600px;
    margin: 40px auto;
}

.author img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

.author h2 {
    font-size: 28px;
    margin: 20px 0 10px;
}

.author p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0 auto 20px;
    padding: 0 10px;
}

.email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
}

.email img {
    width: 18px;
    height: 18px;
}

.gradient-header {
    background: linear-gradient(90deg, #7ed6df, #b8e994);
    padding: 12px 20px;
    border: none;
    box-shadow: none;
}

.gradient-header__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gradient-header__logo {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
    color: #000;
    text-align: left;
}



/* privacy */
.privacy-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: sans-serif;
    line-height: 1.6;
}

.privacy-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.privacy-paragraph {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: justify;
}

.privacy-text {
    font-size: 16px;
    color: #333;
    text-align: justify;
}

.privacy-text p {
    margin-bottom: 12px;
}
