 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #f8f9fc;
      color: #1a2639;
      line-height: 1.6;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Цветовая палитра (вдохновение от сайта) */
    :root {
      --primary-dark: #2A459E;    /* темно-синий */
      --primary-mid: #1a3355;
      --gold: #c9a84c;            /* золотой акцент */
      --gold-light: #e8d5a3;
      --text-light: #eef2f7;
      --text-dark: #1a2639;
      --bg-light: #f8f9fc;
      --border-light: #e0e6ed;
    }

    /* Шапка */
    .header {
      background-color: #ffffff;
      padding: 20px 0;
      border-bottom: 3px solid var(--gold);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      position: fixed;
      width: 100%;
      z-index: 1000;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo_sm {
      height: 65px;
    }

    .logo h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.8rem;
      color: white;
      letter-spacing: -0.5px;
    }

    .logo h1 span {
      color: var(--gold);
    }

    .logo .sub {
      font-size: 0.85rem;
      color: var(--gold-light);
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 400;
      margin-top: 2px;
    }

    .header-tagline {
      color: rgba(0, 0, 0, 0.8);
      font-weight: 400;
      font-size: 0.95rem;
      border-left: 2px solid var(--gold);
      padding-left: 20px;
    }

    .header-tagline i {
      color: var(--gold);
      margin-right: 6px;
    }

    /* Основной блок Hero (минималистичный) */
    .hero {
        background-image: url('images/hero_bg.jpg') no-repeat center center ;
      background: #ffffff rgba(255, 255, 255, 0.24);
      background-size: cover;
      padding: 200px 0 140px;
      border-bottom: 1px solid var(--border-light);
    }

    .hero-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
    }

    .hero-text {
      flex: 2;
      min-width: 280px;
    }

    .hero-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 600;
      color: var(--primary-dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .hero-text h2 i {
      color: var(--gold);
      font-size: 2.2rem;
      margin-right: 8px;
    }

    .hero-text p {
      font-size: 1.1rem;
      color: #2c3e5c;
      max-width: 600px;
      margin-bottom: 24px;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 28px 50px;
      margin-top: 20px;
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .stat-item i {
      font-size: 1.8rem;
      color: var(--gold);
      width: 40px;
      text-align: center;
    }

    .stat-item .number {
      font-weight: 700;
      font-size: 1.6rem;
      color: var(--primary-dark);
      line-height: 1.2;
    }

    .stat-item .label {
      font-size: 0.9rem;
      color: #3d4f6e;
      font-weight: 500;
    }

    .hero-image {
      flex: 1;
      min-width: 200px;
      background: white;
      padding: 20px 20px 10px;
      border-radius: 16px;
      box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
      border: 1px solid rgba(255,255,255,0.6);
      text-align: center;
    }

    .hero-image i {
      font-size: 4rem;
      color: var(--gold);
      opacity: 0.8;
      margin-bottom: 8px;
    }

    .hero-image .img-label {
      font-weight: 600;
      color: var(--primary-dark);
      letter-spacing: 1px;
      font-size: 0.9rem;
      border-top: 1px solid var(--border-light);
      padding-top: 12px;
    }

    /* Секция "О компании" */
    .section {
      padding: 60px 0;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--primary-dark);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-title i {
      color: var(--gold);
      font-size: 2rem;
    }

    .title-underline {
      width: 70px;
      height: 3px;
      background: var(--gold);
      margin: 8px 0 24px 0;
    }

    .about-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }

    .about-text {
      flex: 2;
      min-width: 280px;
    }

    .about-text p {
      margin-bottom: 18px;
      font-size: 1.05rem;
      color: #1f2e47;
    }

    .about-text strong {
      color: var(--primary-dark);
      font-weight: 600;
    }

    .about-highlights {
      flex: 1;
      min-width: 220px;
      background: white;
      padding: 28px 24px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      border: 1px solid var(--border-light);
    }

    .about-highlights ul {
      list-style: none;
    }

    .about-highlights li {
      padding: 12px 0;
      border-bottom: 1px solid #edf2f7;
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
    }

    .about-highlights li:last-child {
      border-bottom: none;
    }

    .about-highlights li i {
      color: var(--gold);
      width: 22px;
      font-size: 1.1rem;
    }

    /* Секция услуг */
    .services {
      background-color: white;
      border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
    }

    .services-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 16px;
    }

    .service-card {
      flex: 1 1 200px;
      background: var(--bg-light);
      padding: 28px 22px;
      border-radius: 16px;
      transition: 0.2s ease;
      border: 1px solid transparent;
    }

    .service-card:hover {
      border-color: var(--gold);
      box-shadow: 0 8px 20px rgba(201, 168, 76, 0.10);
      transform: translateY(-4px);
    }

    .service-card i {
      font-size: 2.2rem;
      color: var(--gold);
      margin-bottom: 12px;
      display: inline-block;
    }

    .service-card h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--primary-dark);
    }

    .service-card p {
      color: #3d4f6e;
      font-size: 0.95rem;
    }

    /* Секция проектов */
    .projects-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 8px;
    }

    .project-item {
      background: white;
      padding: 18px 20px;
      border-radius: 12px;
      border-left: 4px solid var(--gold);
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
      transition: 0.2s;
      font-weight: 500;
      color: #1a3355;
    }

    .project-item i {
      color: var(--gold);
      margin-right: 10px;
      font-size: 0.9rem;
    }

    .project-item:hover {
      background: #f4f7fc;
      border-left-width: 6px;
    }

    /* Кнопка / акцент */
    .badge-gold {
      display: inline-block;
      background: var(--gold);
      color: white;
      padding: 4px 14px;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-right: 6px;
    }

    .footer {
      background-color: var(--primary-dark);
      color: rgba(255,255,255,0.7);
      padding: 30px 0;
      border-top: 3px solid var(--gold);
      margin-top: 20px;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.9rem;
    }

    .footer-copy i {
      color: var(--gold);
      margin: 0 4px;
    }

    .footer-links a {
      color: var(--gold-light);
      text-decoration: none;
      margin-left: 24px;
      font-size: 0.9rem;
      transition: 0.2s;
    }

    .footer-links a:hover {
      color: white;
    }

    /* --- Стили слайдера (галереи) --- */
    .slider-section {
      padding: 30px 0 50px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.05);
      margin: 20px 0;
    }

    .slider-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
      background: #f0f3f8;
    }

    .slider-track {
      display: flex;
      transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    .slide {
      min-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px 20px 30px;
      background: white;
    }

    .slide-image {
      width: 100%;
      max-width: 800px;
      height: 380px;
      background: #e6ecf5;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: var(--gold);
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      margin-bottom: 18px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    }

    /* Цветные фоны для демонстрации (замените на реальные изображения) */
    .slide-image.bg-1 { background: url('images/01.jpg'); 
    background-position: center; 
    object-fit: fill;
    background-repeat: no-repeat; }
    .slide-image.bg-2 { background: url('images/02.jpg'); 
    background-position: center; 
    object-fit: fill;
    background-repeat: no-repeat; }
    .slide-image.bg-3 { background: url('images/03.jpg'); 
    background-position: center; 
    object-fit: fill;
    background-repeat: no-repeat; }
    .slide-image.bg-4 { background: url('images/04.jpg'); 
    background-position: center; 
    object-fit: fill;
    background-repeat: no-repeat; }
    .slide-image.bg-5 { background: url('images/05.jpg'); 
    background-position: center; 
    object-fit: fill;
    background-repeat: no-repeat; }

    /* Иконка-заглушка поверх фона */
    .slide-image i {
      font-size: 5rem;
      color: rgba(255,255,255,0.25);
      text-shadow: 0 4px 12px rgba(0,0,0,0.2);
      z-index: 2;
    }

    /* Текст под изображением */
    .slide-caption {
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--primary-dark);
      letter-spacing: 0.3px;
      padding: 0 10px;
      text-align: center;
    }

    .slide-caption small {
      display: block;
      font-weight: 400;
      font-size: 0.9rem;
      color: #4d627a;
      margin-top: 4px;
    }

    /* Кнопки навигации */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.88);
      border: none;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.4rem;
      color: var(--primary-dark);
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      transition: all 0.2s ease;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,0.4);
    }

    .slider-btn:hover {
      background: white;
      color: var(--gold);
      box-shadow: 0 6px 24px rgba(201, 168, 76, 0.25);
      transform: translateY(-50%) scale(1.05);
    }

    .slider-btn:active {
      transform: translateY(-50%) scale(0.94);
    }

    .slider-btn.prev {
      left: 18px;
    }
    .slider-btn.next {
      right: 18px;
    }

    /* Индикаторы (точки) */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-top: 28px;
      padding-bottom: 6px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #d0d8e3;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      padding: 0;
      box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    }

    .dot.active {
      background: var(--gold);
      transform: scale(1.2);
      box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.20);
    }

    .dot:hover {
      background: var(--gold-light);
      transform: scale(1.1);
    }

        /* --- Стили секции контактов --- */
    .contacts-section {
      background: white;
      border-radius: 20px;
      padding: 40px 40px 50px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.05);
      margin: 20px 0;
    }

    .contacts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 10px;
    }

    /* Левая колонка - контактные данные */
    .contacts-info {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 16px 20px;
      background: var(--bg-light);
      border-radius: 14px;
      transition: 0.2s ease;
      border-left: 3px solid transparent;
    }

    .contact-item:hover {
      border-left-color: var(--gold);
      background: #f2f5fa;
      transform: translateX(4px);
    }

    .contact-item .icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: var(--primary-dark);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.2rem;
    }

    .contact-item .content {
      flex: 1;
    }

    .contact-item .label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: #7a8aa0;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .contact-item .value {
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--primary-dark);
    }

    .contact-item .value a {
      color: var(--primary-dark);
      text-decoration: none;
      transition: 0.2s;
    }

    .contact-item .value a:hover {
      color: var(--gold);
    }

    .contact-item .value .sub-info {
      display: block;
      font-weight: 400;
      font-size: 0.9rem;
      color: #5a6e88;
      margin-top: 2px;
    }

    /* Социальные сети */
    .social-block {
      margin-top: 8px;
      padding: 18px 20px;
      background: var(--bg-light);
      border-radius: 14px;
    }

    .social-block .label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: #7a8aa0;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .social-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background: white;
      border-radius: 12px;
      color: var(--primary-dark);
      font-size: 1.4rem;
      transition: 0.25s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      border: 1px solid var(--border-light);
      text-decoration: none;
    }

    .social-links a:hover {
      background: var(--gold);
      color: white;
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(201, 168, 76, 0.25);
    }

    /* Правая колонка - карта */
    .contacts-map {
      background: var(--bg-light);
      border-radius: 16px;
      overflow: hidden;
      min-height: 380px;
      border: 1px solid var(--border-light);
      position: relative;
    }

    .contacts-map iframe {
      width: 100%;
      height: 100%;
      min-height: 380px;
      border: 0;
      display: block;
    }

        /* Адаптив */
    @media (max-width: 860px) {
      .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .contacts-section {
        padding: 30px 20px 35px;
      }
      .contacts-map {
        min-height: 300px;
      }
      .contacts-map iframe {
        min-height: 300px;
      }
    }

    /* адаптив */
    @media (max-width: 760px) {
      .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .header-tagline {
        border-left: none;
        padding-left: 0;
        font-size: 0.9rem;
      }
      .hero-text h2 {
        font-size: 2.2rem;
      }
      .hero-stats {
        gap: 16px 30px;
      }
      .stat-item .number {
        font-size: 1.3rem;
      }
            .slide-image {
        height: 260px;
      }
      .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
      }
      .slider-btn.prev { left: 10px; }
      .slider-btn.next { right: 10px; }
      .section-title {
        font-size: 1.8rem;
      }

    }

    @media (max-width: 480px) {
      .contact-item {
        padding: 14px 16px;
        flex-wrap: wrap;
      }
      .contact-item .icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
      }
      .section-title {
        font-size: 1.8rem;
      }
    }