



    /* MAIN SECTIONS */
    .section {
      max-width: 1200px;
      margin: auto;
      padding: 25px 25px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 42px;
      margin-bottom: 12px;
      color: #111;
    }

    .section-title p {
      color: #666;
      font-size: 18px;
    }

    /* CARDS */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .card {
      background: #fff;
      border-radius: 22px;
      overflow: hidden;

      box-shadow: 0 10px 30px rgba(0,0,0,0.08);

      transition: 0.3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
    }

    .card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
    }

    .card-content {
      padding: 28px;
    }

    .card-content h3 {
      margin-bottom: 14px;
      font-size: 24px;
      color: #111;
    }

    .card-content p {
      color: #666;
      line-height: 1.7;
    }

    /* ABOUT SECTION */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about img {
      width: 100%;
      border-radius: 22px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .about-text h2 {
      font-size: 42px;
      margin-bottom: 20px;
    }

    .about-text p {
      color: #666;
      line-height: 1.9;
      margin-bottom: 20px;
    }

    /* CTA SECTION */
    .cta {
      background: #111;
      color: #fff;

      border-radius: 28px;

      padding: 70px 40px;
      text-align: center;
    }

    .cta h2 {
      font-size: 44px;
      margin-bottom: 20px;
    }

    .cta p {
      max-width: 750px;
      margin: auto;
      line-height: 1.8;
      color: rgba(255,255,255,0.82);
      margin-bottom: 35px;
    }

    .cta a {
      display: inline-block;

      background: #ff7b00;
      color: #fff;

      padding: 16px 34px;

      border-radius: 12px;

      text-decoration: none;
      font-weight: 700;

      transition: 0.25s ease;
    }

    .cta a:hover {
      background: #e66d00;
    }

    /* MOBILE */
    @media (max-width: 900px) {

      .hero {
        height: 70vh;
      }

      .hero h1 {
        font-size: 42px;
      }

      .hero p {
        font-size: 17px;
      }

      .card-grid {
        grid-template-columns: 1fr;
      }

      .about {
        grid-template-columns: 1fr;
      }

      .section-title h2,
      .about-text h2,
      .cta h2 {
        font-size: 32px;
      }

    }

 

