    /* body {
        margin: 0;
        font-family: Georgia, serif;
    } */

    .brand-section {
        /* position: relative; */
        background: url("/assets/img/CNL-bg.png") center/cover no-repeat;
        /* 🔹 Replace with your image */
        /* color: #2b2b2b; */
        /* padding: 80px 20px; */
        display: flex;
        /* justify-content: center; */
        /* align-items: flex-start; */
        /* flex-wrap: wrap; */
        /* gap: 40px; */
    }

    /* Yellow overlay */
    .brand-section::before {
        /* content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; */
        /* background: rgba(251, 197, 72, 0.9); */
        /* yellow overlay with transparency */
        /* z-index: 0; */
    }

    .brand-left,
    .brand-right {
        position: relative;
        z-index: 1;
        /* margin: 8rem; */
        /* ensure text is above overlay */
    }

    .brand-left {
        flex: 1 1 300px;
        font-size: 48px;
        font-weight: bold;
        line-height: 1.2;
        /* text-align: center; */
        /* padding-left: 12rem; */
    }

    .brand-right {
        flex: 1 1 400px;
        font-size: 18px;
        line-height: 1.6;
    }

    .brand-right p {
        margin-bottom: 20px;
    }

    .brand-btn {
        display: inline-block;
        padding: 12px 24px;
        border: 2px solid #2b2b2b;
        color: #2b2b2b;
        font-weight: bold;
        font-size: 14px;
        letter-spacing: 1px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .brand-btn:hover {
        background-color: #2b2b2b;
        color: #fff;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .brand-left {
            font-size: 36px;
            text-align: center;
        }

        .brand-right {
            font-size: 16px;
            text-align: center;
        }
    }

    @media (max-width: 600px) {
        .brand-section {
            flex-direction: column;
            align-items: center;
        }

        .brand-left {
            /* font-size: 30px; */
            flex: 1 1 159px;
            text-align: center;
        }
    }



/* pro state */
.prob-statement h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  /* color: #fff; */
}

.prob-statement p,
.prob-statement a {
  /* color: #e4e4c5; */
  line-height: 1.6;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}

.prob-statement a:hover {
  /* color: #ffad00; */
}

.prob-statement .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.prob-statement .social-icons a {
  font-size: 1.5rem;
  /* color: #e4e4c5; */
  transition: transform 0.3s, color 0.3s;
}

.prob-statement .social-icons a:hover {
  /* color: #ffad00; */
  transform: translateY(-3px);
}