/* mobile.css */
body {
    font-family: Arial, sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
    line-height: 1.5;
  }
  
  /* Общая контейнерная сетка */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin: 0 auto;
  }
  
  /* ----- HEADER ----- */
  .container-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .header nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }
  
  .header nav a {
    font-size: 16px;
    padding: 6px 0;
    text-decoration: none;
  }
  
  /* ----- HERO ----- */
  .container-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-size: 15px;
    margin: 0 auto 15px auto;
    max-width: 95%;
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
    margin-top: 15px;
    box-shadow: none;
  }
  
  /* ----- FEATURES ----- */
  .features-title {
    font-size: 20px;
    text-align: center;
    margin: 20px 0;
  }
  
  .feature-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-card {
    width: 100%;
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
  }
  
  /* ----- ABOUT / SUPPORT BLOCK ----- */
  .container-experts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .custom-list {
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
  }
  
  .custom-list li {
    margin-bottom: 10px;
    font-size: 15px;
  }
  
  /* ----- WORKS ----- */
  .container-works {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .works-image img {
    width: 100%;
    height: auto;
    margin-top: 15px;
    box-shadow: none;
  }
  
  /* ----- TIMELINE ----- */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }
  
  .timeline-step {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 6px;
  }
  
  #sidenote {
    border-left: 3px solid #f57c00;
    padding-left: 10px;
    margin-top: 10px;
    font-size: 14px;
  }
  
  /* ----- PROJECTS ----- */
  .projects h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .project-block {
    margin-bottom: 25px;
  }
  
  .cover-photo-project {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .slides img {
    width: 100%;
    display: block;
    margin: 0;
  }
  
  /* ----- GALLERY ----- */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 20px 0;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 4px;
  }
  
  /* ----- FOOTER ----- */
  .container-footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
  }
  
  .icon-footer {
    display: block;
    margin: 0 auto 10px auto;
  }
  