.agent-info {
    margin-top: 12px;
    margin-bottom: 2px;   /* reduce gap */
}

/* About Us Section Icon */
.about-section .section-title::before {
    content: "👥";          /* icon before the title */
    margin-right: 8px;      /* spacing */
    color: #f0a500;         /* brand gold color */
    font-size: 22px;        /* adjust size to match text */
    vertical-align: middle; /* ensures it aligns with the title text */
}

.about-section .agent-name {
    color: #1E3A5F;  /* dark blue for light background */
    font-size: 20px;
}

.about-section .agent-designation {
    color: #F97316;
}

.agent-separator {
    margin: 0 6px;
    color: #999;
}


.agent-company {
    margin-top: 0;
    margin-bottom: 5px;   /* tight spacing */
    color: #1E3A5F;
}

.about-section {
    padding: 10px 20px;
    background: #f8f8f8; /* optional background for section */
}
.about-us {
    display: flex;
    align-items: center;
}

/* IMAGE */
.about-img {
    width: 70%;
    border-radius: 10px;
}

/* TEXT */
.about-text {
    padding: 0 25px;
}

.about-text h4 {
    font-size: 22px;
    margin-top: 10px;
    color: #333;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* RIGHT SIDE SMALL COLUMN */
.about-side {
    text-align: center;
}

.about-side-box {
    background: #f5f7fa;
    padding: 20px 10px;
    border-radius: 10px;
}

.about-side-box i {
    font-size: 30px;
    color: #F97316;
    margin-bottom: 10px;
}

.about-side-box p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* BUTTON */
.btn-about {
    background-color: #64a30a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.btn-about:hover {
    background-color: #72b70f;
}

.about-text h4 {
    text-indent: 0;          /* Headings should not be indented */
    margin-top: 1.5em;       /* space above heading */
    margin-bottom: 0.5em;    /* space below heading */
    font-weight: 600;         /* slightly bold for emphasis */
}

.about-text p {
    text-indent: 30px;       /* indent paragraphs */
    margin-bottom: 1em;      /* space between paragraphs */
    line-height: 1.6;        /* easier to read */
    text-align: justify;      /* align text evenly on both sides */
}

/* MOBILE FIX */
@media (max-width: 992px) {
    .about-us {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding: 20px 0;
    }

    .about-side {
        margin-top: 20px;
    }
}