/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f9fefb;
    color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .header {
    background-color: #0b1a0f;
    padding: 20px 0;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff;
  }
  
  .nav a {
    color: #fff;
    margin-left: 24px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .nav a:first-child {
    margin-left: 0;
  }
  
  .nav a:hover {
    text-decoration: underline;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 0 100px 0;
    color: white;
    position: relative;
    background: rgba(11,26,15,0.85);
  }
  
  .hero-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .hero-text {
    max-width: 600px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #e5e5e5;
  }
  
  .features {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .feature {
    max-width: 180px;
  }
  
  .feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
  }
  
  .feature h3 span {
    color: #fff;
    margin-right: 10px;
    font-size: 1.4rem;
    line-height: 1;
  }
  
  .feature p {
    font-size: 0.75rem;
    color: #bfbfbf;
  }
  
  /* Hero image */
  .hero-image {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    text-align: right;
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* About section */
  .about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    background-color: #f9fefb;
    color: #0b1a0f;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about-text {
    max-width: 600px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .about-text h2 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0b1a0f;
  }
  
  .about-text p {
    margin-bottom: 20px;
  }
  
  .about-button {
    background-color: #0b1a0f;
    color: white;
    font-weight: 700;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    max-width: fit-content;
  }
  
  .about-button:hover {
    background-color: #152e1d;
  }
  
  .about-image {
    max-width: 450px;
    flex: 1;
    border: 2px solid #4285f4;
    border-radius: 0 60px 0 60px;
    overflow: hidden;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  /* Services section */
  .services {
    background-color: #0b1a0f;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    color: white;
    font-size: 0.9rem;
  }
  
  .service-box {
    background-color: #0b1a0f;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 0 15px rgb(0 0 0 / 0.7);
    transition: background-color 0.3s ease;
  }
  
  .service-box:hover {
    background-color: #152e1d;
  }
  
  .service-box h3 {
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  /* Blog section */
  .blog {
    padding: 40px 20px;
    background-color: #f9fefb;
    color: #0b1a0f;
  }
  
  .blog h2 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .blog-item {
    background-color: #0b1a0f;
    border-radius: 6px;
    color: white;
    padding: 16px;
    box-shadow: 0 0 15px rgb(0 0 0 / 0.7);
    display: flex;
    flex-direction: column;
  }
  
  .blog-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
  }
  
  .blog-item h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  
  .blog-item p {
    flex-grow: 1;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #bfbfbf;
  }
  
  .blog-item a {
    color: #a8c9ff;
    font-weight: 700;
    text-decoration: none;
    align-self: flex-start;
  }
  
  .blog-item a:hover {
    text-decoration: underline;
  }
  
  /* Contact section */
  .contact {
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    position: relative;
    color: white;
    background-color: rgba(11,26,15,0.75);
  }
  
  .contact-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  
  .contact input {
    padding: 12px 16px;
    border: 1px solid #fff;
    border-radius: 6px;
    background: transparent;
    color: white;
    font-size: 1rem;
  }
  
  .contact input::placeholder {
    color: #ccc;
  }
  
  .contact button {
    background-color: #0b1a0f;
    border: none;
    padding: 15px;
    font-weight: 700;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .contact button:hover {
    background-color: #152e1d;
  }
  
  /* Footer */
  footer {
    background-color: #0b1a0f;
    color: white;
    padding: 20px 20px;
    font-size: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  
  .footer-left {
    flex: 1;
  }
  
  .footer-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .footer-right a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
  }
  
  .footer-right a:hover {
    color: #4285f4;
  }
  
  /* Иконки соцсетей */
  .social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  
  .social-icons a {
    display: inline-block;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    color: #4285f4;
  }
  
  /* Адаптив */
  
  @media (max-width: 900px) {
    .hero-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .hero-image {
      text-align: left;
      max-width: 100%;
      margin-top: 30px;
    }
  
    .about {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text, .about-image {
      max-width: 100%;
    }
  
    .about-image {
      border-radius: 0 0 60px 60px;
      border-width: 2px 2px 2px 2px;
    }
  
    .services {
      grid-template-columns: 1fr;
    }
  
    .blog-list {
      grid-template-columns: 1fr;
    }
  
    footer {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-right {
      justify-content: center;
    }
    .nav {
        display: none;
    }
  }
  