   .office-holder{    width: 100%;max-width: 1200px;margin: 0 auto;display: flex;flex-direction: column;align-items: center;text-align: center;}
   .office-img-holder{    max-width: 1000px;width: 100%;height: 400px;background-size: cover;background-position: center;}
   .office-img-holder img{ object-fit: cover;max-width: 100%;max-height: 100%;}
   .office-description {width: 80%;max-width: 800px;background: white;position: relative;top: -65px;padding: 20px;}
   .office-description img {    max-width: 100%;margin: 10px;max-height: 350px;}
   .office-incidental-holder {display: flex;align-items: center;flex-direction: row;width: 80%;    margin-top: 20px; margin-bottom:40px;    column-gap: 40px;}
   .office-incidental {    height: 300px;width: 50%;    background-position: center;}
   @media only screen and (max-width: 667px) { .office-incidental-holder{flex-direction: column;row-gap: 40px;width: 80%;} .office-incidental {    height: 300px;width: 100%;} }

   .agent-section {padding: 40px;}
   /* Grid layout */
   .agent-grid {display: grid;grid-template-columns: repeat(3, 1fr);gap: 60px;}
   /* Individual agent card */
   .agent-card { text-align: center; }
   /* Image styling */
.agent-photo {
    width: 220px;         /* fixed portrait width */
    height: 300px;        /* fixed portrait height */
    object-fit: cover;    /* fill the portrait box */
    border-radius: 6px;
    display: block;
    margin: 0 auto 10px auto;
}

   /* Text styling */
   .agent-name { font-size: 1.2rem; margin: 0px 0 5px; }
   .agent-phone { font-size: 1rem; margin: 5px 0; }
   .agent-email { color: #0066cc; text-decoration: none; font-size: 1rem; }
   /* Responsive layout for mobile */
   @media screen and (max-width: 900px) { .agent-grid { grid-template-columns: repeat(2, 1fr); margin: 0 auto; }}
   @media screen and (max-width: 667px) { .agent-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } .agent-card{max-width: 320px;} }
@media (max-width: 667px) {
    .agent-photo {
        width: 180px;
        height: 240px;
    }
}
