:root {
    --primary: #1a3e72;
    --secondary: #e8c31e;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    z-index: -1;
  }
  
  /* Основная сетка */
  .page-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-template-areas: 
        "logo header"
        "logo photo"
        "logo description"
        "logo contacts"
        "logo stories" 
        "logo aircraft"; /* Добавляем новую область для статей */
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}
  
  /* Логотип (фиксированная ширина 300px) */
  .logo-column {
    grid-area: logo;
    padding: 30px;
    position: relative;
    top: 0;
    height: 100vh;
    display:flex;
    align-items: top center;
    background: rgba(255, 255, 255, 0);
  }
  
  .logo {
    width: 100%;
    max-width: 400px;
  }
  
  .logo img {
    width: 100%;
    height: auto;
  }
  
  /* Заголовок */
  .header-content {
    grid-area: header;
    padding: 30px 30px 30px 30px;
    display: flex;
    align-items: center;
    min-height: 150px;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .header-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3em;
    color: black;
    font-weight: 400;
    line-height: 1.4;
  }
  
  /* Фото */
  .photo-content {
    grid-area: photo;
    padding-right: 30px;
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.9);
    object-position: center;
  }
  
  .airplane-photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    object-fit: cover;
  }
  
  /* Описание */
  .description-content {
    grid-area: description;
    padding-right: 30px;
    background: rgba(255, 255, 255, 0.9);
    object-position: center;
  }
  
  .description {
    font-family: 'Manrope', serif;
    font-weight: 400;
    font-size: large;
    line-height: 1.5;
    color: #000000;
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 8px;
    text-align: justify;
    hyphens: auto;
  }

  .descr-p-en {
    margin-top: 10px;
  }

  .descr-p-ru {
    margin-top: 10px;
    text-indent: 60px;
  }
  
  .sign {
    margin-top: 2em;
    font-weight: bold;
    text-align: right;
  }

  .description-text {
  margin-bottom: 20px;
}
  
  /* Контакты */
  .contacts-content {
    grid-area: contacts;
    padding-right: 30px;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .contact {
    margin: 30px 0;
    text-align: center;
  }
  
  .contact-circle {
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--primary);
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .contact-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  
  .contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
  }
  
  .contact-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: black;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .contact-icons i {
    font-size: 30px;
  }
  
  .contact-icons a:hover {
    background: black;
    color: white;
    transform: scale(1.1);
  }
  
  /* Секция самолетов */
  .aircraft-content {
    grid-area: aircraft;
    padding-right: 30px;
    padding-left:10px;
    padding-bottom: 40px;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .aircraft-section {
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .aircraft-section h2 {
    color: black;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 500;
  }
  
  .aircraft-columns {
    display: flex;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
  }
  
  .aircraft-column {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 20px;
  }
  
  .aircraft-column h3 {
    color: black;
    border-bottom: 2px solid rgba(0, 0, 0, 0.493);
    padding-bottom: 10px;
    font-family: 'Manrope', sans-serif;
  }
  
  .aircraft-list {
    font-family: 'Monrope', serif;
    list-style: none;
    padding: 0;
  }
  
  .aircraft-list li {
    margin: 15px 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    transition: all 0.3s;
  }
  
  .my-divider {
    margin:30px auto;
    text-align: center;
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.555);
    width: 50%;
  }
  
  .site-footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 0;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 60px;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .copyright {
    font-size: 14px;
    color: black;
    opacity: 0.8;
  }
  
  .company-name {
    font-size: 16px;
    color: black;
    font-weight: 500;
    margin-top: 10px;
  }
  
  .footer-divider {
    width: 50px;
    height: 2px;
    background: var(--secondary);
    margin: 15px auto;
    opacity: 0.7;
  }

  /* Language Switcher Styles */
  .language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .language-switcher button {
    background: none;
    border: none;
    padding: 4px 12px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 15px;
  }

  .language-switcher button:hover {
    background: #000;
    color: #fff;
  }

  .language-switcher button.active {
  background: #000;
  color: #fff;
}

/* Секция статей */
.articles-section {
    margin: 50px 0 30px;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.articles-section h2 {
    color: black;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 500;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-text {
    padding: 20px;
}

.article-text h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--primary);
}

.article-text p {
    font-family: 'Manrope', sans-serif;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more {
    font-family: 'Manrope', sans-serif;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover {
    color: black;
    border-bottom-color: black;
}

/* Стили для страницы публикаций */
.publications-grid-container {
    grid-area: description;
    padding-right: 30px;
    background: rgba(255, 255, 255, 0.9);
}

.publications-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.publications-intro p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2em;
    color: #000;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.publication-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: fit-content;
}

.publication-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.publication-card.featured {
    border: 2px solid var(--secondary);
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.publication-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 12px;
    z-index: 2;
}

.publication-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.publication-card.featured .publication-image {
    height: 100%;
}

.publication-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.publication-card:hover .publication-image img {
    transform: scale(1.05);
}

.publication-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 15px 10px;
    color: white;
}

.read-time {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    opacity: 0.9;
}

.publication-content {
    padding: 25px;
}

.publication-card.featured .publication-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.publication-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #666;
}

.publication-date {
    font-weight: 600;
}

.publication-category {
    background: rgba(26, 62, 114, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.publication-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4em;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.publication-content p {
    font-family: 'Manrope', sans-serif;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.publication-actions {
    margin-top: auto;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.read-more-btn:hover {
    background: #000;
    transform: translateX(5px);
}

.read-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* Анимация появления карточек */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.publication-card {
    animation: fadeInUp 0.6s ease forwards;
}

.publication-card:nth-child(2) { animation-delay: 0.1s; }
.publication-card:nth-child(3) { animation-delay: 0.2s; }
.publication-card:nth-child(4) { animation-delay: 0.3s; }
.publication-card:nth-child(5) { animation-delay: 0.4s; }
.publication-card:nth-child(6) { animation-delay: 0.5s; }

/* True Stories Section */
.stories-content {
    grid-area: stories;
    padding-right: 30px;
    background: rgba(255, 255, 255, 0.9);
}

.stories-section {
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stories-section h2 {
    color: black;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 500;
}

.stories-description {
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stories-description p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1em;
    line-height: 1.6;
    color: #000000;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-text {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.story-text h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3em;
    color: black;
    margin-bottom: 15px;
    font-weight: 600;
}

.story-text p {
    font-family: 'Manrope', sans-serif;
    color: #000000;
    line-height: 1.6;
    flex-grow: 1;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .stories-content {
        padding: 20px;
    }
    
    .stories-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-image {
        height: 180px;
    }
    
    .story-text {
        padding: 20px;
    }
    
    .stories-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

/* Адаптивность для страницы публикаций */
@media (max-width: 992px) {
    .publications-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .publication-card.featured {
        grid-template-columns: 1fr;
    }
}

/* Бургер-меню */
.burger-menu {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1001;
}

.burger-icon {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.burger-icon:hover {
    transform: scale(1.1);
}

.burger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    z-index: 1001;
    overflow: hidden;
}

.burger-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.menu-content {
    padding: 20px;
}

.menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px !important;
    padding: 10px 0 !important; /* Равные отступы сверху и снизу */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* Убираем фиксированную высоту */
}

.menu-logo {
    width: 250px !important;
    height: 250px !important;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block;
}



.menu-header h3 {
    display: none; /* Скрываем текст */
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 8px;
}

.menu-list a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #000;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.menu-list a:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.menu-list i {
    width: 24px;
    margin-right: 12px;
    font-size: 18px;
    color: #1a3e72;
}

.menu-list span {
    flex: 1;
}

.language-menu-item {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.language-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.language-buttons button {
    background: rgba(0, 0, 0, 0.08);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-buttons button:hover {
    background: #000;
    color: #fff;
}

.language-buttons button.active {
    background: #000;
    color: #fff;
}

.burger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.burger-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Анимация бургера при открытии */
.burger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-icon.active span:nth-child(2) {
    opacity: 0;
}

.burger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.burger-nav,
.burger-overlay,
.burger-icon span,
.menu-list a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-list a {
    transition: all 0.2s ease;
}


/* Стили для страницы публикаций */
.article-full {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-full h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.article-meta {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-family: 'Manrope', sans-serif;
}

.article-full .article-image {
    margin-bottom: 30px;
}

.article-full .article-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-full .article-text {
    font-family: 'Manrope', serif;
    line-height: 1.8;
    color: #333;
}

.article-full .article-text p {
    margin-bottom: 20px;
}

.article-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.publication-image a {
    display: block;
    position: relative;
    text-decoration: none;
}

.publication-image a:hover img {
    opacity: 0.9;
    transform: scale(1.02);
}

.publication-image img {
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

/* Стили для выпадающего меню sharing */
.share-dropdown {
    position: relative;
    display: inline-block;
    margin: 40px 0;
}

.share-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #000;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-toggle:hover {
    background: #333;
    transform: translateY(-2px);
}

.share-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 8px;
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.share-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    text-align: left;
    transition: all 0.2s ease;
}

.share-item:hover {
    background: #f5f5f5;
}

.share-item i {
    width: 16px;
    text-align: center;
}

.share-item:nth-child(1) i { color: #0088cc; }
.share-item:nth-child(2) i { color: #25D366; }
.share-item:nth-child(3) i { color: #EA4335; }
.share-item:nth-child(4) i { color: #666; }

.fa-plane.rotate-left {
    transform: rotateY(180deg);
    transition: transform 0.3s ease;
    display: inline-block;
}
  
  
  /* Адаптация для планшетов */
  @media (max-width: 992px) {
    .page-wrapper {
        grid-template-columns: 200px 1fr;
    }
    
    .header-text {
        font-size: 1.5em;
    }
  
    .description {
        text-align: justify;
        hyphens: none;
        padding: 20px 15px; /* Уменьшаем отступы */
    }
  
    .sign {
      margin-top: 2em;
    }
  }
  
  /* Адаптация для мобильных */
  @media (max-width: 768px) {
    .page-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "logo"
            "header"
            "photo"
            "description"
            "contacts"
            "stories"
            "aircraft";
    }
    
    .logo-column {
        position: static;
        height: auto;
        padding: 20px;
        justify-content: center;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .header-content,
    .photo-content,
    .description-content,
    .contacts-content,
    .aircraft-content {
        padding: 20px;
    }
    
    .header-text {
        font-size: 1.3em;
        text-align: center;
    }
    
    .contact-icons {
        gap: 20px;
    }
    
    .contact-icons a {
        width: 50px;
        height: 50px;
    }
    
    .contact-icons i {
        font-size: 25px;
    }
  
    .description {
      text-align: left;
      text-indent: 0;
    }

    description p {
        line-height: 1.6; /* Уменьшаем межстрочный интервал */
        margin-bottom: 1em; /* Оптимальные отступы */
    }

    .descr-p-ru {
      text-align: left;
      text-indent: 0;
    }
  
    .sign {
      margin-top: 2em;
    }
  
    .copyright {
        font-size: 12px;
    }
    .company-name {
        font-size: 16px;
    }
  
    .site-footer {
        padding: 25px 0;
        margin-top: 40px;
    }
    .copyright {
        font-size: 12px;
    }
    .company-name {
        font-size: 15px;
    }

     .articles-content {
        padding: 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .articles-section {
        padding: 20px;
        margin: 30px 0;
    }
    
    .article-image {
        height: 180px;
    }

    .burger-menu {
        top: 20px;
        right: 20px;
    }
    
    .burger-nav {
        width: 260px;
        right: 15px;
        top: 15px;
    }
    
    .burger-nav.active {
        transform: translateY(0) scale(1);
    }

    
    .article-full {
        padding: 20px;
    }
    
    .article-full h1 {
        font-size: 2em;
    }

    .share-toggle {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .share-menu {
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: 160px;
    }
    
    .share-menu.active {
        transform: translateX(-50%) translateY(0);
    }

    .share-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
    }

    .share-menu.active ~ .share-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }
  }

  @media (max-width: 480px) {
    .burger-nav {
        width: calc(100% - 30px);
        right: 15px;
        left: 15px;
        top: 15px;
    }

    .menu-header {
        margin-bottom: 10px !important;
        padding: 8px 0 !important;
    }
    
    .menu-logo {
        width: 200px !important;
        height: 100px !important;
    }
}