#sobre {
    background-color: var(--light-grey-bg);
}

.office-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.office-intro-text {
    flex: 1;
}

.office-intro-image {
    flex: 1;
    max-width: 500px;
}

.office-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.office-intro-text h2 {
    text-align: left;
    margin-bottom: 10px;
}

.office-intro-text h3 {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--medium-grey);
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.office-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background-color: transparent;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-secondary i {
    margin-left: 8px;
}

.founder-details-wrapper {
    display: none;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}

.founder-details-wrapper.visible {
    display: flex;
}

.founder-image {
    flex-basis: 30%;
    max-width: 300px;
}

.founder-image img {
    width: 100%;
    border-radius: 8px;
}

.founder-bio {
    flex-basis: 70%;
}

.founder-bio h4 {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    color: var(--dark-grey);
    margin-top: 0;
    margin-bottom: 0;
}

.founder-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--medium-grey);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 5px;
    margin-bottom: 30px;
}

.oab-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 20px;
}

.oab-badge i {
    color: var(--primary-blue);
}

.pillars-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
}

.pillar-card {
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.pillar-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.pillar-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-grey);
}