body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    color: #4e4e4e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: #e0e0e0;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.right-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.telegram-icon img {
    height: 24px;
    transition: transform 0.3s ease;
}

.telegram-icon:hover img {
    transform: scale(1.1);
}

.menu-icon img {
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-icon:hover img {
    transform: scale(1.1);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 220px;
    background: #ffffff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 15px;
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    box-sizing: border-box;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.nav-menu li {
    margin: 15px 0;
}

.nav-menu a {
    color: #4e4e4e;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #006633;
}

.close-menu {
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.page-section {
    padding: 80px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    min-height: 100vh;
}

.page-section h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-section p {
    font-size: 18px;
    color: #747474;
}

.rates {
    padding: 40px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.2s forwards;
}

.rates h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.rates p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.4s forwards;
    min-width: 280px;
}

th, td {
    padding: 10px 6px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
}

th {
    background: #00cc66;
    color: #ffffff;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00cc66;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: #006633;
    transform: translateY(-2px);
}

.channel-btn {
    background: #0088cc;
}

.channel-btn:hover {
    background: #006699;
    transform: translateY(-2px);
}

.advantages {
    padding: 40px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.6s forwards;
}

.advantages-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.advantage-block {
    max-width: 300px;
    text-align: center;
}

.advantage-img {
    width: 100%;
    max-width: 150px; /* Reduced image size */
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.advantage-img:hover {
    transform: scale(1.02);
}

.advantage-block p {

    font-size: 10px;
    color: #666666;
    margin-top: 10px;
    line-height: 1.5;
}
.advantage-block p strong {
    font-weight: 700; /* Bold headers */
}

.news {
    padding: 40px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.8s forwards;
}

.news-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-img {
    max-width: 50%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.news-img:hover {
    transform: scale(1.02);
}

.news-text h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.news-text p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
}

.reviews {
    padding: 40px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 1s forwards;
}

.reviews h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.rating {
    font-size: 20px;
    color: #00cc66;
    margin-bottom: 20px;
}

.review-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.review {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 1.2s forwards;
}

.review .emoji {
    font-size: 20px;
    margin-right: 8px;
}

.review h4 {
    margin: 8px 0;
}

.review p {
    color: #666666;
    font-size: 14px;
}

.review-form {
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

.review-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 10px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-bottom: 10px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #00cc66;
}

.review-submit-container {
    text-align: center;
    margin: 15px 0;
}

.review-gallery-container {
    position: relative;
}

.review-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.review-img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.review-img:hover {
    transform: scale(1.05);
}

.converter {
    margin: 15px auto;
    max-width: 700px;
    width: 90%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.6s forwards;
}

.converter-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.converter input, .converter select {
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    flex: 1;
}

.converter input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.converter input:focus, .converter select:focus {
    border-color: #00cc66;
    outline: none;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

.gallery-img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

footer {
    background: #e0e0e0;
    padding: 15px 0;
    text-align: center;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

footer p {
    margin: 0;
    font-size: 14px;
    color: #4e4e4e;
}

footer .logo {
    height: 30px;
}

footer .telegram-icon img {
    height: 24px;
    margin-left: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 0-400px */
@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }

    .logo-container span {
        font-size: 14px;
    }

    .logo {
        height: 30px;
    }

    .telegram-icon img, .menu-icon img {
        height: 20px;
    }

    .nav-menu {
        width: 60%;
        max-width: 180px;
        height: 100vh;
        right: -100%;
        padding: 10px;
        box-sizing: border-box;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        margin-top: 40px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .page-section {
        padding: 60px 0;
    }

    .page-section h1 {
        font-size: 24px;
    }

    .page-section p {
        font-size: 14px;
    }

    .rates h2 {
        font-size: 22px;
    }

    .rates p {
        font-size: 14px;
    }

    table {
        font-size: 11px;
        min-width: 250px;
    }

    th, td {
        padding: 6px 4px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .advantages-blocks {
        flex-direction: column;
        align-items: center;
    }

    .advantage-block {
        max-width: 100%;
    }

    .advantage-img {
        max-width: 60px;
    }

    .news-content {
        flex-direction: column;
    }

    .news-img {
        max-width: 100%;
    }

    .news-text h2 {
        font-size: 20px;
    }

    .news-text p {
        font-size: 14px;
    }

    .reviews h2 {
        font-size: 22px;
    }

    .rating {
        font-size: 16px;
    }

    .review-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .converter-row {
        flex-direction: column;
    }

    .converter input, .converter select {
        font-size: 12px;
        padding: 6px;
    }

    .review-submit-container {
        text-align: center;
    }

    footer .container {
        flex-direction: column;
        gap: 10px;
    }

    footer p {
        font-size: 12px;
    }

    footer .logo {
        height: 25px;
    }

    footer .telegram-icon img {
        height: 20px;
    }
}

/* 401-700px */
@media (min-width: 401px) and (max-width: 700px) {
    .container {
        padding: 0 15px;
    }

    .logo-container span {
        font-size: 16px;
    }

    .logo {
        height: 35px;
    }

    .telegram-icon img, .menu-icon img {
        height: 22px;
    }

    .nav-menu {
        width: 90%;
        max-width: 350px;
    }

    .nav-menu a {
        font-size: 15px;
    }

    .page-section {
        padding: 70px 0;
    }

    .page-section h1 {
        font-size: 28px;
    }

    .page-section p {
        font-size: 16px;
    }

    .rates h2 {
        font-size: 24px;
    }

    .rates p {
        font-size: 15px;
    }

    table {
        font-size: 12px;
        min-width: 270px;
    }

    th, td {
        padding: 8px 5px;
    }

    .btn {
        padding: 9px 18px;
        font-size: 15px;
    }

    .advantages-blocks {
        flex-direction: column;
        align-items: center;
    }

    .advantage-block {
        max-width: 45%;
    }

    .advantage-img {
        max-width: 60px;
    }

    .news-content {
        flex-direction: column;
    }

    .news-img {
        max-width: 80%;
    }

    .news-text h2 {
        font-size: 22px;
    }

    .news-text p {
        font-size: 15px;
    }

    .reviews h2 {
        font-size: 24px;
    }

    .rating {
        font-size: 18px;
    }

    .review-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .converter-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .converter input, .converter select {
        font-size: 13px;
        padding: 7px;
    }

    .review-submit-container {
        text-align: center;
    }

    footer .container {
        flex-direction: row;
        gap: 12px;
    }

    footer p {
        font-size: 13px;
    }

    footer .logo {
        height: 28px;
    }

    footer .telegram-icon img {
        height: 22px;
    }
}

/* 701px+ */
@media (min-width: 701px) {
    .container {
        padding: 0 20px;
    }

    .logo-container span {
        font-size: 18px;
    }

    .logo {
        height: 40px;
    }

    .telegram-icon img, .menu-icon img {
        height: 24px;
    }

    .nav-menu {
        width: 300px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .page-section {
        padding: 80px 0;
    }

    .page-section h1 {
        font-size: 36px;
    }

    .page-section p {
        font-size: 18px;
    }

    .rates h2 {
        font-size: 28px;
    }

    .rates p {
        font-size: 16px;
    }

    table {
        font-size: 13px;
    }

    th, td {
        padding: 10px 6px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .advantages-blocks {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
    }

    .advantage-block {
        max-width: 200px;
    }

    .advantage-img {
        max-width: 120px;
    }

    .news-content {
        flex-direction: row;
    }

    .news-img {
        max-width: 50%;
    }

    .news-text h2 {
        font-size: 24px;
    }

    .news-text p {
        font-size: 16px;
    }

    .reviews h2 {
        font-size: 28px;
    }

    .rating {
        font-size: 20px;
    }

    .review-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .converter-row {
        flex-direction: row;
    }

    .converter input, .converter select {
        font-size: 14px;
        padding: 8px;
    }

    .review-submit-container {
        text-align: center;
    }

    footer .container {
        flex-direction: row;
        gap: 15px;
    }

    footer p {
        font-size: 14px;
    }

    footer .logo {
        height: 30px;
    }

    footer .telegram-icon img {
        height: 24px;
    }
}