:root {
      --green: #24933b;
      --green-dark: #08752b;
      --green-light: #eaf7ed;
      --dark: #102027;
      --gray: #667278;
      --light: #f7f9f8;
      --white: #ffffff;
      --border: #e4e9e6;
      --shadow: 0 12px 35px rgba(0,0,0,.07);
      --radius: 16px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--dark);
      background: var(--white);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    /* =========================
       NAVIGATION
    ========================== */

    header {
      background: rgba(255,255,255,.96);
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      width: 190px;
      height: auto;
      display: block;
    }

    .logo span {
      display: block;
      color: #555;
      font-size: 8px;
      letter-spacing: 2px;
      margin-top: -5px;
      text-align: center;
    }

    .nav-links {
      display: flex;
      gap: 35px;
      align-items: center;
      font-size: 14px;
      font-weight: 600;
    }

    .nav-links a:hover {
      color: var(--green);
    }

    .nav-button {
      background: var(--green);
      color: white;
      padding: 12px 22px;
      border-radius: 7px;
      font-weight: bold;
    }

    .nav-button:hover {
      background: var(--green-dark);
    }

/* =========================
   ABOUT SECTION
========================== */

.about-section {
  background: #ffffff;
  padding: 90px 0 110px;
}

.about-container {
  width: min(1450px, 92%);
  margin: auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 75px;

  align-items: center;
}


/* =========================
   FIVE PHOTO COLLAGE
   ALL PHOTOS = 3:4
========================== */

.about-gallery {
  width: 100%;
  max-width: 790px;
}


/* ---------- TOP ROW: 2 PHOTOS ---------- */

.gallery-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;

  margin-bottom: 25px;
}


/* ---------- BOTTOM ROW: 3 PHOTOS ---------- */

.gallery-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}


/* ---------- PHOTO ---------- */

.photo {
  width: 100%;

  /* TRUE 3:4 PORTRAIT RATIO */
  aspect-ratio: 3 / 4;

  overflow: hidden;

  background: #eeeeee;
}

.photo img {
  width: 100%;
  height: 100%;

  display: block;

  /* Keeps the original 3:4 portrait proportions */
  object-fit: cover;

  object-position: center;

  transition: transform 0.4s ease;
}


/* Subtle hover effect */

.photo:hover img {
  transform: scale(1.035);
}


/* =========================
   ABOUT CONTENT
========================== */

.about-content {
  width: 100%;
  padding-right: 15px;
}

.about-block {
  margin-bottom: 42px;
}

.about-block:last-child {
  margin-bottom: 0;
}


/* =========================
   ANGLED TITLE
========================== */

.about-title {
  width: 210px;
  height: 61px;

  background: #438887;

  display: flex;
  align-items: center;

  padding-left: 45px;

  margin-bottom: 25px;

  position: relative;
}

.about-title::after {
  content: "";

  position: absolute;

  top: 0;
  right: -25px;

  width: 0;
  height: 0;

  border-top: 61px solid #438887;
  border-right: 25px solid transparent;
}

.about-title span {
  position: relative;
  z-index: 2;

  color: #ffffff;

  font-size: 21px;
  font-weight: 800;

  letter-spacing: 0.5px;
}


/* =========================
   ABOUT TEXT
========================== */

.about-block p {
  color: #282828;

  font-size: 18px;
  line-height: 1.85;

  margin: 0;

  text-align: justify;
}


/* =========================
   TABLET
========================== */

@media (max-width: 1100px) {

  .about-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .about-gallery {
    max-width: 850px;
    margin: 0 auto;
  }

  .about-content {
    padding-right: 0;
  }

  .about-block p {
    font-size: 17px;
  }
}


  /* =========================
    MOBILE
  ========================== */

  @media (max-width: 700px) {

    .about-section {
      padding: 65px 0 80px;
    }

    .about-container {
      width: 92%;
    }


    .about-title {
      width: 175px;
      height: 52px;

      padding-left: 25px;
    }

    .about-title::after {
      right: -20px;

      border-top-width: 52px;
      border-right-width: 20px;
    }

    .about-title span {
      font-size: 16px;
    }

    .about-block p {
      font-size: 15px;
      line-height: 1.7;

      text-align: left;
    }

    /* Keep 2 photos on first row */
    .gallery-top {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 12px;

      margin-bottom: 12px;
    }


    /* Keep 3 photos on second row */
    .gallery-bottom {
      grid-template-columns: repeat(3, minmax(0, 1fr));

      gap: 12px;
    }


    /* Every image remains exactly 3:4 */
    .photo {
      aspect-ratio: 3 / 4;
    }
  }


/* =========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {

  .gallery-top {
    gap: 8px;
  }

  .gallery-bottom {
    gap: 8px;
  }

  .about-section {
    padding-top: 50px;
  }

  .about-block {
    margin-bottom: 35px;
  }
}

/* =========================================
    CONTACT CTA
 ========================================= */

 .cta {
   background: linear-gradient(
     135deg,
     #20953c 0%,
     #08752b 100%
   );

   color: white;
   padding: 85px 0;
 }


 .cta-grid {
   display: grid;
   grid-template-columns: 1.15fr .85fr;
   gap: 60px;
   align-items: center;
 }


 .cta h2 {
   font-size: clamp(38px, 5vw, 55px);
   line-height: 1.08;
   letter-spacing: -1.5px;
   margin-bottom: 20px;
 }


 .cta p {
   color: #e0f2e3;
   max-width: 560px;
   font-size: 17px;
   line-height: 1.7;
   margin-bottom: 30px;
 }


 .cta .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   background: white;
   color: var(--green-dark);

   padding: 14px 25px;
   border-radius: 7px;

   font-weight: 700;

   transition: all .2s ease;
 }


 .cta .btn:hover {
   background: #f0f8f2;
   transform: translateY(-2px);
 }


 /* =========================================
    CONTACT / SOCIAL BOX
 ========================================= */

 .contact-box {
   background: white;
   color: var(--dark);

   padding: 35px;

   border-radius: 16px;

   box-shadow:
     0 18px 45px rgba(0, 0, 0, .14);

   width: 100%;
 }


 .contact-box h3 {
   color: var(--dark);
   font-size: 26px;
   margin-bottom: 10px;
 }


 .contact-box .social-intro {
   color: var(--gray);
   font-size: 14px;
   line-height: 1.6;
   margin-bottom: 25px;
 }


 /* =========================================
    SOCIAL LINKS
 ========================================= */

 .social-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }


 .social-link {
   display: flex;
   align-items: center;

   gap: 14px;

   width: 100%;

   padding: 13px 15px;

   border: 1px solid #e3e9e5;
   border-radius: 10px;

   background: #fff;

   transition: all .2s ease;
 }


 .social-link:hover {
   transform: translateX(5px);
   border-color: var(--green);
   box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
 }


 .social-icon {
   width: 40px;
   height: 40px;

   display: flex;
   align-items: center;
   justify-content: center;

   flex-shrink: 0;

   border-radius: 8px;

   color: white;

   font-weight: 700;
   font-size: 18px;
 }


 .social-name {
   flex: 1;

   color: var(--dark);

   font-size: 14px;
   font-weight: 700;
 }


 .social-arrow {
   color: var(--green);

   font-size: 18px;
   font-weight: 700;
 }


 /* Facebook */

 .facebook .social-icon {
   background: #07c644;
 }


 /* Instagram */

 .instagram .social-icon {
   background: linear-gradient(
     135deg,
     #afe2a3,
     #0b9a17,
     #afe2a3
   );
 }


 /* LinkedIn */

 .linkedin .social-icon {
   background: #08884c;
   font-size: 13px;
 }


 /* =========================================
    FOOTER
 ========================================= */

 footer {
   background: #101c20;

   color: white;

   padding: 70px 0 25px;
 }


 .footer-grid {
   display: grid;

   grid-template-columns:
     1.5fr
     1fr
     1.4fr
     1.2fr;

   gap: 45px;

   align-items: start;
 }


 /* =========================================
    FOOTER BRAND
 ========================================= */

 .footer-brand {
   max-width: 280px;
 }


 .footer-logo {
   display: block;
   margin: 0 0 8px 0;
   line-height: 0;
 }


 .footer-logo img {
  display: block;
  width: 160px;
  max-height: 55px;
  height: auto;
  object-fit: contain;
  margin: 0;
  margin-bottom: 12px;

  filter:
    brightness(0)
    saturate(100%)
    invert(47%)
    sepia(52%)
    saturate(900%)
    hue-rotate(88deg)
    brightness(88%)
    contrast(95%);
 }


 .footer-brand p {
  color: #aeb9bc;
  font-size: 14px;
  line-height: 1.7;
  max-width: 250px;
  margin: 0;
}


 /* =========================================
    FOOTER HEADINGS
 ========================================= */

 footer h4 {
   color: white;

   font-size: 15px;
   font-weight: 700;

   margin: 0 0 20px;
 }


 /* =========================================
    FOOTER LISTS
 ========================================= */

 footer ul {
   list-style: none;

   margin: 0;
   padding: 0;
 }


 footer li {
   margin-bottom: 11px;

   color: #aeb9bc;

   font-size: 13px;
 }


 footer li a {
   color: #aeb9bc;

   text-decoration: none;

   transition: all .2s ease;
 }


 footer li a:hover {
   color: #55c969;

   padding-left: 3px;
 }


 /* =========================================
    NEWSLETTER
 ========================================= */

 .newsletter {
   max-width: 280px;
 }


 .newsletter p {
   color: #aeb9bc;

   font-size: 13px;
   line-height: 1.6;

   margin: 0 0 16px;
 }


 .newsletter-form {
   display: flex;

   width: 100%;
 }


 .newsletter-form input {
   width: 100%;

   min-width: 0;

   padding: 12px 13px;

   border: none;

   outline: none;

   background: white;

   color: #102027;

   font-size: 13px;

   border-radius: 6px 0 0 6px;
 }


 .newsletter-form input::placeholder {
   color: #8b9699;
 }


 .newsletter-form button {
   flex-shrink: 0;

   border: none;

   background: var(--green);

   color: white;

   padding: 0 18px;

   border-radius: 0 6px 6px 0;

   cursor: pointer;

   font-size: 17px;
   font-weight: 700;

   transition: background .2s ease;
 }


 .newsletter-form button:hover {
   background: var(--green-dark);
 }


 /* =========================================
    COPYRIGHT
 ========================================= */

 .copyright {
   border-top: 1px solid #293539;

   margin-top: 55px;

   padding-top: 20px;

   color: #849194;

   font-size: 12px;

   display: flex;

   justify-content: space-between;

   align-items: center;

   gap: 20px;
 }


 .copyright a {
   color: #849194;

   text-decoration: none;

   transition: color .2s ease;
 }


 .copyright a:hover {
   color: white;
 }


 /* =========================================
    CONTACT CTA RESPONSIVE
 ========================================= */

 @media (max-width: 950px) {

   .cta-grid {
     grid-template-columns: 1fr;

     gap: 40px;
   }


   .cta-content {
     max-width: 650px;
   }


   .contact-box {
     max-width: 650px;
   }


   .footer-grid {
     grid-template-columns:
       1fr
       1fr;

     gap: 45px;
   }

 }


 /* =========================================
    MOBILE
 ========================================= */

 @media (max-width: 600px) {

   .cta {
     padding: 65px 0;
   }


   .cta h2 {
     font-size: 38px;

     letter-spacing: -1px;
   }


   .cta p {
     font-size: 15px;
   }


   .contact-box {
     padding: 25px;
   }


   .contact-box h3 {
     font-size: 23px;
   }


   .social-link {
     padding: 12px;
   }


   footer {
     padding: 55px 0 20px;
   }


   .footer-grid {
     grid-template-columns: 1fr;

     gap: 38px;
   }


   .footer-brand {
     max-width: 100%;
   }


   .newsletter {
     max-width: 100%;
   }


   .copyright {
     flex-direction: column;

     align-items: flex-start;

     gap: 10px;

     line-height: 1.6;
   }

 }

    /* =========================
       MOBILE
    ========================== */

    @media (max-width: 900px) {

      .nav-links {
        display: none;
      }

      .hero {
        background:
          linear-gradient(
            rgba(255,255,255,.93),
            rgba(255,255,255,.93)
          ),
          url("lfdcpa-hero.png") center / cover;
      }

      .hero-content {
        padding: 70px 0;
      }

      .service-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-intro {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
      }

      .cta-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {

      .nav-links {
        display: none;
      }

        /* Smaller LFDCPA logo */
      .logo {
        font-size: 20px;
        letter-spacing: -1px;
      }

      .logo img {
        width: 150px;
        height: auto;
      }

      .logo span {
        font-size: 15px;
        letter-spacing: 1px;
        margin-top: -3px;
      }

      .nav-button {
        font-size: 11px;
        padding: 9px 12px;
      }

      .hero {
        min-height: auto;
      }

      .hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
      }

      .hero p {
        font-size: 16px;
      }

      .trust {
        flex-direction: column;
        align-items: flex-start;
      }

      .section {
        padding: 70px 0;
      }

      .section-heading h2 {
        font-size: 34px;
      }

      .service-grid {
        grid-template-columns: 1fr;
      }

      .growth {
        min-height: 500px;
      }

      .growth h2 {
        font-size: 36px;
      }

      .why-grid {
        grid-template-columns: 1fr 1fr;
      }

      .cta h2 {
        font-size: 36px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        flex-direction: column;
        gap: 10px;
      }
    }