.page-banner {
    position: relative;
    height: 350px;
    background: 
        linear-gradient(to right, rgba(10,18,25,0.82), rgba(10,18,25,0.35)),
        url("../images/banner11.png") center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,18,25,0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 46px;
    letter-spacing: -0.01em;
}

/* ======= */
.about {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-container {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* LEFT */

.about-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}

.about-title {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 50px;
  color: var(--ink);
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* RIGHT */

.about-company {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 26px;
  color: var(--ink);
}

.about-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.specialization-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.specialization-list li {
  font-family: var(--font-body);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding-left: 25px;
}

.specialization-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}


/* Section 2 */
.hero2-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero2-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero2-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.hero2-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 20px;
}

.hero2-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}
/* ================= ADAPTIVE DESIGN ================= */

/* Планшеты и малые экраны */
@media (max-width: 1200px) {
    .about-container {
        width: 95%;
        gap: 40px;
    }
    
    .about-title {
        font-size: 36px;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    /* Баннер */
    .page-banner {
        height: 250px;
    }
    
    .banner-content h1 {
        font-size: 32px;
        padding: 0 20px;
    }

    /* Секция About */
    .about {
        padding: 60px 0;
    }

    .about-container {
        grid-template-columns: 1fr; /* Колонки друг под другом */
        gap: 30px;
    }

    .about-left {
        order: 1; /* Заголовок и фото сверху */
    }

    .about-right {
        order: 2; /* Текст и список снизу */
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-company {
        font-size: 24px;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
        text-align: justify;
    }

    /* Вторая секция (Hero2) */
    .hero2-image {
        height: 250px;
    }

    .hero2-content {
        padding: 30px 15px;
    }

    .hero2-title {
        font-size: 24px;
    }

    .hero2-text {
        font-size: 16px;
    }

    /* Список специализаций */
    .specialization-list li {
        font-size: 14px;
        padding: 10px 0 10px 25px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .page-banner {
        height: 200px;
    }
    
    .about-title {
        font-size: 24px;
    }

    .about-company {
        font-size: 20px;
    }
}