﻿
* {
  box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0f1114;
    color: #e0e0e0;
    line-height: 1.6;
    direction: rtl;
    text-align: right;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

header {
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
    padding: 0px;
    border-bottom: 2px solid #00bcd4;
}

    header h1 {
        margin: 0;
        color: #e5e7eb;
        font-size: 28px;
    }

nav {
  margin-top: 10px;
}

    nav a {
        text-align: right;
        color: #ccc;
        text-decoration: none;
        margin-right: 5px;
        margin-left: 5px;
        padding: 8px 12px;
        border-radius: 4px;
        transition: background 0.3s, color 0.3s;
    }

        nav a:hover,
        nav a.active {
            color: #00bcd4;
        }

.lang-switcher {
    float: left;
    padding: 25px 20px 20px 20px;
}

main section {
  margin-bottom: 40px;
}

main h2 {
  color: #00bcd4;
  font-size: 24px;
  margin-bottom: 16px;
}

main h3 {
    color: #00bcd4;
}

main p, main li {
  color: #d0d0d0;
  font-size: 18px;
}

ul {
  padding-left: 20px;
}

blockquote {
  border-left: 4px solid #00bcd4;
  padding-left: 16px;
  margin-left: 0;
  color: #aaa;
  font-style: italic;
}

footer {
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
    color: #999;
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #00bcd4;
}

a {
  color: #00bcd4;
  text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s;
}

    .whatsapp-button:hover {
        background-color: #1ebe5d;
    }

    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }

.standart-list {
    list-style: revert; /* или circle, square */
    margin: revert; /* добавим отступ */
    padding: revert; /* немного внутреннего отступа */
}

.img-normal {
    max-width: initial;
    height: initial;
    display: initial;
    vertical-align: initial;
}

.aTitle {
    text-decoration: none;
}

.aTitle:hover {
    text-decoration: none;
}