@charset "utf-8";
/* CSS Document */

 .services-section {
      text-align: center;
      padding: 60px 30px;
    }

    .services-section h4 {
      text-transform: uppercase;
      font-size: 14px;
      color: #7f7f7f;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .services-section h2 {
      font-size: 32px;
      font-weight: bold;
      color: #222;
      margin-bottom: 8px;
    }

    .icon {
      font-size: 24px;
      margin-bottom: 30px;
      color: #f97316;
    }

    .services-content {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      max-width: 1100px;
      margin: 0 auto;
      text-align: left;
    }

    .services-text {
      flex: 1 1 50%;
      padding: 20px;
      font-size: 16px;
      color: #555;
    }

    .services-text p {
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .contact-btn {
      background-color: #f97316;
      color: white;
      padding: 14px 28px;
      border-radius: 25px;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.3s ease;
    }

    .contact-btn:hover {
      background-color: #e26513;
    }

    .services-image {
      flex: 1 1 50%;
      text-align: center;
      padding: 20px;
    }

    .services-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .services-content {
        flex-direction: column;
      }

      .services-text,
      .services-image {
        flex: 1 1 100%;
        text-align: center;
      }

      .services-text {
        text-align: center;
      }
    }