      :root {
          --primary: #8CCB5E;
          --secondary: #4a5568;
          --accent: #8CCB5E;
          --light: #f7fafc;
          --text: #2d3748;
          --white: #ffffff;
          --gray: #e2e8f0;
		  --dark: #333;
      }

      * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      }

      body {
          background-color: var(--light);
          color: var(--text);
		  font-family: Arial, sans-serif;
          line-height: 1.6;
          overflow-x: hidden;
		  padding-top: ;
      }

      a {
          text-decoration: none;
          color: inherit;
          transition: 0.3s;
      }

      ul {
          list-style: none;
      }

    .container {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%; /* Контейнер всегда занимает всю доступную ширину */
      }
	  


      /* Header */
	  
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: white;
  color: --dark;
  position: fixed;
  top: 0;
  left: 50%;
  right: 0;
  z-index: 1000; /* чтобы меню было поверх остального контента */
  transform: translateX(-50%);
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* необязательная тень */
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5em;
  display: inline-block;
  vertical-align: middle;
}

.logo img {
  height: 40px; /* Высота логотипа — 40 пикселей */
  width: auto; /* Сохраняем пропорции (ширина подбирается автоматически) */
}

.nav-center {
  display: flex;
  gap: 25px;
}

.nav-center a {
  color: --dark;
  text-decoration: none;
  font-size: 1em;
}

.phone-btn a {
  background-color: var(--accent);
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

/* Адаптивность */
@media (min-width: 768px) {
    .header {
        max-width: 1200px;
        margin: 0 auto; /* Центрируем хедер */
        padding: 15px 40px; /* Можно вернуть большие отступы для больших экранов */
    }
}
  
      @media (min-width: 768px) {
    .container {
     max-width: 1200px; /* Фиксированная ширина только на больших экранах */
    }
}

/* На мобильных устройствах — убираем ограничение ширины */
@media (max-width: 768px) {
  .header-inner {
    max-width: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    gap: 10px;
  }

  .nav-center {
    flex-direction: column;
    order: -1;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
  }

  .nav-center a {
    font-size: 0.9em;
    padding: 5px;
    display: block;
    margin: auto;
  }

  .phone-btn a {
    font-size: 0.9em;
    padding: 6px 12px;
    display: block;
    margin: auto;
  }
}

      /* Hero Section */
.hero {
  /* Высота блока */
  height: 100vh; /* 100% высоты окна браузера */
  
  /* Фоновое изображение */
  background: url('img/hero_001.webp') center/cover no-repeat;
  
  /* Выравнивание контента по центру */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

      .hero-content {
          max-width: 800px;
          margin: 0 auto;
      }

      .hero h1 {
          font-size: 3.5rem;
          margin-bottom: 20px;
          font-weight: 800;
      }

      .hero p {
          font-size: 1.2rem;
          margin-bottom: 30px;
          opacity: 0.9;
      }

      /* Services */
      .section {
          padding: 80px 0;
      }

      .section-title {
          text-align: center;
          margin-bottom: 50px;
      }

      .section-title h2 {
          font-size: 2.5rem;
          color: var(--primary);
      }

      .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
      }

      .service-card {
          background: var(--white);
          padding: 40px;
          border-radius: 15px;
          box-shadow: 0 4px 6px rgba(0,0,0,0.05);
          transition: 0.3s;
          text-align: center;
      }

      .service-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }

      .service-icon {
          width: 60px;
          height: 60px;
          background: var(--light);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 20px;
          color: var(--accent);
      }

      /* Portfolio */
      .portfolio-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 20px;
      }

      .portfolio-item {
          position: relative;
          border-radius: 15px;
          overflow: hidden;
          height: 300px;
      }

      .portfolio-item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: 0.5s;
      }

      .portfolio-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: linear-gradient(transparent, rgba(0,0,0,0.8));
          padding: 20px;
          color: white;
          transform: translateY(100%);
          transition: 0.3s;
      }

      .portfolio-item:hover .portfolio-overlay {
          transform: translateY(0);
      }

      .portfolio-item:hover img {
          transform: scale(1.1);
      }

      /* Reviews */
      .reviews-slider {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
      }

      .review-card {
          background: var(--white);
          padding: 30px;
          border-radius: 15px;
          border-left: 5px solid var(--accent);
      }

      .review-text {
          font-style: italic;
          margin-bottom: 15px;
      }

      .review-author {
          font-weight: 700;
          color: var(--primary);
      }

      /* Info / Contacts */
      .contact-section {
          background: var(--primary);
          color: white;
      }

      .contact-container {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 50px;
          align-items: center;
      }

      .contact-form {
          background: var(--white);
          padding: 40px;
          border-radius: 15px;
          color: var(--text);
      }

      .form-group {
          margin-bottom: 20px;
      }

      .form-group label {
          display: block;
          margin-bottom: 8px;
          font-weight: 600;
      }

      .form-group input, .form-group textarea {
          width: 100%;
          padding: 12px;
          border: 1px solid var(--gray);
          border-radius: 8px;
          outline: none;
      }

      .btn-submit {
          background: var(--accent);
          color: white;
          padding: 15px 30px;
          border: none;
          border-radius: 8px;
          cursor: pointer;
          width: 100%;
          font-size: 1rem;
          font-weight: 600;
      }

      footer {
          padding: 40px;
          text-align: center;
          border-top: 1px solid var(--gray);
          color: var(--gray);
		  background-color: var(--dark);
      }

      @media (max-width: 768px) {
          .nav-links, .btn-call { display: none; }
          .hero h1 { font-size: 2.2rem; }
          .contact-container { grid-template-columns: 1fr; }
      }