    /* Clean CSS with simple container system */
    :root {
      /* SECTION-SPECIFIC VARIABLES */

      /* Colors */
      --about-us-primary: #fbc430;
      /* Yellow */
      --about-us-primary-rgb: 251, 196, 48;
      --about-us-dark-text: #383455;
      /* Dark Purple/Blue */
      --about-us-body-text: #303030;
      /* Dark Gray */
      --about-us-light-text: #5d5d5d;
      /* Light Gray */
      --about-us-white: #ffffff;
      --about-us-bg-light: #fdfdfd;
      --about-us-border-color: #bebebe;
      /* Approx from design */
      --about-us-overlay: rgba(0, 0, 0, 0.6);

      /* Typography */
      --about-us-body-font: "Inter", sans-serif;
      --about-us-heading-font: "Montserrat", sans-serif;

      /* Container variables */
      --container-max-width: 1200px;
      --container-padding-left: 15px;
      --container-padding-right: 15px;
    }

    /* Reset & Base Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--about-us-body-font);
      color: var(--about-us-body-text);
      background-color: var(--about-us-white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

    /* Container System */
    .container {
      max-width: 1200px;
      padding-left: 15px;
      padding-right: 15px;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
    }

    /* --- HERO SECTION --- */
    .about-hero {
      position: relative;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url("../images/hero-certi.png");
      /* Fixed path for CSS in css/ folder */
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    /* Overlay */
    .about-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--about-us-overlay);
      z-index: 1;
    }

    .about-hero .container {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .hero-content {
      max-width: 970px;
      margin: 0 auto;
    }

    .about-hero h1 {
      font-family: var(--about-us-heading-font);
      font-weight: 600;
      font-size: 50px;
      line-height: 1.2;
      color: var(--about-us-white);
      margin-bottom: 10px;
      width: 100%;
    }

    /* Multi-style text handling */
    .about-hero h1 .highlight {
      color: var(--about-us-primary);
    }

    .about-hero p {
      font-family: var(--about-us-body-font);
      font-weight: 400;
      font-size: 16px;
      line-height: 1.6;
      color: var(--about-us-white);
      text-align: center;
      max-width: 970px;
    }

    /* Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      left: 135px;
      /* Based on design padding */
      bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 2;
      transform: translateY(-50%);
    }

    .scroll-text {
      font-family: var(--about-us-body-font);
      font-size: 14px;
      color: var(--about-us-white);
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background-color: var(--about-us-white);
    }

    /* --- SHARED SECTION STYLES --- */
    .section {
      padding: 80px 0;
    }

    .section-heading {
      font-family: var(--about-us-heading-font);
      font-weight: 600;
      font-size: 32px;
      color: var(--about-us-dark-text);
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    /* Yellow underline for headings */
    .section-heading::after {
      content: "";
      display: block;
      width: 135px;
      height: 2px;
      background-color: var(--about-us-primary);
      margin-top: 10px;
    }

    .section-text p {
      font-size: 18px;
      line-height: 1.6;
      color: var(--about-us-body-text);
      margin-bottom: 20px;
    }

    .section-text p:last-child {
      margin-bottom: 0;
    }

    /* --- GRID LAYOUTS --- */
    .grid-2-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    /* --- IMAGE COMPOSITION (Journey & Why Toffy) --- */
    .image-composition {
      position: relative;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      aspect-ratio: 1 / 1;
    }

    .image-composition img {
      position: relative;
      z-index: 2;
      border-radius: 10px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Yellow Border Rectangle */
    .image-composition::before {
      content: "";
      position: absolute;
      top: 26px;
      left: 26px;
      width: 86%;
      /* Calculated from design proportions */
      height: 91%;
      border: 3px solid var(--about-us-primary);
      border-radius: 10px;
      z-index: 1;
      pointer-events: none;
    }

    /* Decorative Gray Squares using background gradients to avoid extra HTML */

    /* Specific adjustments for the gray squares based on design coordinates */
    .journey-img::after {
      background-position: 100% 0%, 0% 100%;
      transform: translate(40px, -30px) scale(1);
      width: 100%;
      height: 110%;
    }

    /* --- VISION & MISSION SECTION --- */
    .vision-mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 40px;
    }

    .card {
      background-color: var(--about-us-bg-light);
      border: 1px solid #e0e0e0;
      border-radius: 20px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      height: 100%;
    }

    .card-icon-wrapper {
      position: relative;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }


    .card-icon {
      position: relative;
      z-index: 2;
      width: 50px;
      height: 100px;
      object-fit: contain;
      border: none;
      border-radius: 0;
    }

    .card h3 {
      font-family: var(--about-us-heading-font);
      font-weight: 600;
      font-size: 28px;
      color: var(--about-us-dark-text);
      margin: 0 auto 15px;
      max-width: 250px;
      /* Forces title to wrap */
      line-height: 1.1;
    }

    .card p {
      font-family: var(--about-us-body-font);
      font-size: 18px;
      color: var(--about-us-body-text);
      line-height: 1.6;
    }

    /* --- CORE VALUES SECTION --- */
    .values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 30px;
      margin-top: 50px;
    }

    .value-card {
      background-color: var(--about-us-bg-light);
      border: 1px solid #e0e0e0;
      border-radius: 20px;
      padding: 26px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .value-card h3 {
      font-family: var(--about-us-heading-font);
      font-weight: 600;
      font-size: 24px;
      color: var(--about-us-dark-text);
      margin: 10px auto 14px;
      max-width: 220px;
      line-height: 105%;
    }

    .value-card p {
      font-family: var(--about-us-body-font);
      font-size: 16px;
      color: #5d5d5d;
      line-height: 1.6;
    }

    /* --- CTA SECTION --- */
    .cta-section {
      background-color: var(--about-us-primary);
      padding: 50px 0;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      margin-bottom: 80px;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .cta-section h2 {
      font-family: var(--about-us-heading-font);
      font-weight: 600;
      font-size: 30px;
      color: #101010;
      margin-bottom: 18px;
    }

    .cta-section p {
      font-family: var(--about-us-body-font);
      font-size: 16px;
      color: #323232;
      margin-bottom: 34px;
      max-width: 800px;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: var(--about-us-white);
      color: #101010;
      font-family: "Inter", sans-serif;
      font-weight: 500;
      font-size: 18px;
      padding: 12px 26px;
      border-radius: 10px;
      text-decoration: none;
      transition: transform 0.2s ease;
    }

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

    /* Decorative blurred circles for CTA */
    .cta-section::before,
    .cta-section::after {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      background-color: #ef8407;
      border-radius: 50%;
      filter: blur(80px);
      z-index: 1;
    }

    .cta-section::before {
      right: -50px;
      top: -50px;
      left: auto;
      transform: none;
    }

    .cta-section::after {
      left: -50px;
      bottom: -50px;
      top: auto;
      right: auto;
      transform: none;
    }

    /* --- RESPONSIVE DESIGN --- */
    @media (max-width: 991px) {

      .grid-2-col,
      .vision-mission-grid,
      .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .section {
        padding: 60px 0;
      }

      .about-hero h1 {
        font-size: 36px;
        text-align: center;
      }

      .about-hero p {
        font-size: 15px;
      }

      .section-heading {
        font-size: 28px;
      }

      .section-text p {
        font-size: 16px;
      }

      .scroll-indicator {
        display: none;
      }

      .image-composition {
        max-width: 400px;
        margin-bottom: 30px;
      }

      /* Vision Mission Cards */
      .card {
        padding: 30px 25px;
      }

      .card h3 {
        font-size: 24px;
      }

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

      /* Values Cards */
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .value-card {
        padding: 20px 15px;
      }

      .value-card h3 {
        font-size: 20px;
      }

      .value-card p {
        font-size: 14px;
      }

      /* Reorder for "Why Toffy" section on mobile to keep image top or bottom consistently */
      .about-why .grid-2-col {
        display: flex;
        flex-direction: column-reverse;
      }

      /* CTA Section */
      .cta-section {
        padding: 40px 20px;
        margin-bottom: 60px;
      }

      .cta-section h2 {
        font-size: 26px;
      }

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

    @media (max-width: 767px) {
      .about-hero {
        min-height: auto;
        padding: 50px 0;
      }

      .about-hero h1 {
        font-size: 28px;
        line-height: 1.25;
      }

      .about-hero p {
        font-size: 14px;
      }

      .section {
        padding: 45px 0;
      }

      .section-heading {
        font-size: 24px;
      }

      .section-heading::after {
        width: 100px;
        margin-top: 8px;
      }

      .section-text p {
        font-size: 15px;
        margin-bottom: 15px;
      }

      .image-composition {
        max-width: 100%;
      }

      .image-composition::before {
        display: none;
      }

      /* Vision Mission Cards */
      .card {
        padding: 25px 20px;
        border-radius: 15px;
      }

      .card-icon-wrapper {
        width: 60px;
        height: 60px;
      }

      .card-icon {
        width: 40px;
        height: 80px;
      }

      .card h3 {
        font-size: 22px;
        max-width: 200px;
      }

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

      /* Values Cards */
      .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .value-card {
        padding: 20px;
        border-radius: 15px;
      }

      .value-card h3 {
        font-size: 18px;
        max-width: 180px;
      }

      .value-card p {
        font-size: 14px;
      }

      /* CTA Section */
      .cta-section {
        padding: 35px 15px;
        border-radius: 15px;
        margin-bottom: 50px;
      }

      .cta-section h2 {
        font-size: 22px;
        margin-bottom: 14px;
      }

      .cta-section p {
        font-size: 14px;
        margin-bottom: 25px;
      }

      .cta-btn {
        font-size: 15px;
        padding: 10px 22px;
      }
    }