﻿
* {
  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 #3b82f6;
}

    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 0px 8px 12px;
        border-radius: 4px;
        transition: background 0.3s, color 0.3s;
    }

        nav a:hover,
        nav a.active {
            color: #3b82f6;
        }

.lang-switcher {
    float: left;
    padding: 25px 20px 20px 20px;
}

/* Mobile: un-float lang switcher so it stacks ABOVE title instead of overlapping it.
   At 390px the title wrapped underneath float:left (HE) and visually crossed the
   "EN | HE | RU" buttons. Mobile real-estate is vertical anyway. */
@media (max-width: 768px) {
    .lang-switcher {
        float: none;
        display: flex;
        justify-content: flex-start;
        gap: 4px;
        padding: 12px 16px 0 16px;
    }
}

main section {
  margin-bottom: 40px;
}

main h2 {
  color: #3b82f6;
  font-size: 24px;
  margin-bottom: 16px;
}

main h3 {
    color: #3b82f6;
}

main p, main li {
  color: #d0d0d0;
  font-size: 18px;
}

.Content h3 {
    color: #3b82f6;
    font-size: 20px;
}

.Content h4 {
    color: #3b82f6;
    font-size: 18px;
}

ul {
  padding-left: 20px;
}

blockquote {
  border-left: 4px solid #3b82f6;
  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 #3b82f6;
}

a {
  color: #3b82f6;
  text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

.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; /* немного внутреннего отступа */
}

.Content ul {
    list-style: revert; /* или circle, square */
    margin: revert; /* добавим отступ */
    padding: revert; /* немного внутреннего отступа */
}

.Content ol {
    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;
}

.Logos p {
    background-color: white;
    text-align: -webkit-center;
    border-radius: 0.75rem;
}

/* ============= RTL SUPPORT ============= */

/*[dir="rtl"] .icon-list li,
[dir="rtl"] .cta-benefit {
    flex-direction: row-reverse;
}

[dir="rtl"] .process-step {
    direction: rtl;
}

[dir="rtl"] .step-content:hover {
    transform: translateX(-10px);
}

[dir="rtl"] .testimonial-author {
    flex-direction: row-reverse;
}*/

/* Timeline RTL */
/*[dir="rtl"] .timeline-wrap::before {
    left: auto;
    right: 90px;
}

[dir="rtl"] .tl-year {
    order: 3;
}

[dir="rtl"] .tl-connector {
    order: 2;
}

[dir="rtl"] .tl-card {
    order: 1;
    transform-origin: right center;
}

    [dir="rtl"] .tl-card:hover {
        transform: translateX(-4px);
    }

[dir="rtl"] .tl-item.ongoing .tl-card {
    border-left: none;*/
/*    border-right: 3px solid #60a5fa;
*//*}*/


.timeline-wrap::before {
    left: auto;
    right: 90px;
}

@media (max-width: 640px) {
    /* Timeline мобильная версия */
    .timeline-wrap::before {
        right: 24px;
    }
}


.blog-item-arrow {
    margin-right: auto;
    margin-left: unset;
}