
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

   

    /* ================================
       FOOTER SECTION
       ================================ */
    .footer-section {
      position: relative;
      background: url('./assets/img/i2.jpg') center/cover no-repeat;
      overflow: hidden;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
       font-family: 'Lora', Georgia, serif;
      min-height: 400px;
    }

    .footer-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(44, 44, 44, 0.75);
      backdrop-filter: blur(10px);
      z-index: 0;
    }

    /* ================================
       FOOTER CONTENT
       ================================ */
    .footer-content {
      position: relative;
      z-index: 2;
      display: flex;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 32px 30px 32px;
      justify-content: space-between;
      align-items: flex-start;
      gap: 60px;
      flex-wrap: wrap;
    }

    .footer-col {
      flex: 1;
      min-width: 220px;
    }

    .footer-title {
      font-family: Georgia, serif;
      font-size: 27px;
      color: #fff;
      font-weight: 400;
      margin-bottom: 14px;
      text-shadow: 0 2px 18px #222;
      letter-spacing: 0.5px;
      border-bottom: 2px solid #2ca36b;
      padding-bottom: 5px;
      width: max-content;
    }

    .footer-about p,
    .footer-links a,
    .footer-getin p,
    .footer-getin a {
      font-size: 17px;
      color: #e9e9e9;
      line-height: 1.7;
      margin-bottom: 12px;
    }

    /* ================================
       FOOTER LINKS
       ================================ */
    .footer-links {
      display: flex;
      flex-direction: column;
    }

    .footer-links a {
      color: #e9e9e9;
      text-decoration: none;
      font-size: 17px;
      margin-bottom: 11px;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: #2ca36b;
    }

    /* ================================
       FOOTER CONTACT
       ================================ */
    .footer-getin {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-icon {
      background: #2ca36b;
      border-radius: 6px;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      font-size: 21px;
      vertical-align: middle;
      margin-right: 12px;
      box-shadow: 0 1px 5px #0002;
    }

    .footer-powered {
      display: inline-block;
      margin-top: 9px;
      color: #e9e9e9;
      font-size: 16px;
    }

    .footer-powered img {
      vertical-align: middle;
      margin-left: 10px;
      background: #111;
      padding: 2px 6px;
      border-radius: 3px;
      /*height: 37px;*/
      /*width:300px;*/
    }

    /* ================================
       FOOTER BOTTOM
       ================================ */
    .footer-bottom {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #e9e9e9;
      font-size: 17px;
      border-top: 1px solid #444;
      padding: 16px 10px;
      background: rgba(0, 0, 0, 0.2);
    }

    .footer-bottom a {
      color: #2ca36b;
      text-decoration: none;
    }

    /* ================================
       RESPONSIVE DESIGN
       ================================ */
    @media (max-width: 900px) {
      .footer-content {
        gap: 30px;
        padding: 40px 7vw 30px 7vw;
      }
    }

    @media (max-width: 700px) {
      .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 30px 5vw;
      }
      .footer-col {
        min-width: 0;
        width: 100%;
      }
    }

    @media (max-width: 450px) {
      .footer-title {
        font-size: 19px;
      }

      .footer-about p,
      .footer-links a,
      .footer-getin p,
      .footer-getin a {
        font-size: 14px;
      }

      .footer-bottom {
        font-size: 12px;
      }

      .footer-powered {
        font-size: 12px;
      }
    }