.hero-about-us-section {
    padding-bottom: 5%;
    margin-top: 3%;
}

.hero-about-us-header::before {
    content: "";
    display: block;
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/assets/img/home-intro-bg-image.svg") no-repeat right center / cover;
    opacity: 0.8;
    z-index: -1;
}

.about-founder-section {
    position: relative;
    padding-top: 5%;
    padding-bottom: 8%;
    background-color: #ffffff;
}

.about-founder-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(89.78deg, rgba(250, 96, 48, 0.2) -0.01%, rgba(255, 200, 118, 0.2) 99.83%);
}

.about-founder-section h2 {
    position: relative;
    padding-left: 15px;
}

.about-founder-section h2::before {
    content: "";
    background: linear-gradient(89.78deg, #FA6030 -0.01%, #FFC876 99.83%);
    height: 100%;
    width: 2px;
    position: absolute;
    left: 0;
}

.founder-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    margin-top: 50px;
}

.founder-info {
    padding-left: 10px;
}

.founder-info a {
    border: 1px solid #2C2C2C33;
    padding: 15px 33px;
    color: #FA6030;
    margin-top: 20px;
    display: block;
    width: 150px;
    text-align: center;
}

.founder-info a:hover {
    background: linear-gradient(90deg, #FA6030 0%, #FFC876 100%);
    border: 1px solid #FFFFFF;
    cursor: pointer;
    color: #FFFFFF;
}

.founder-role {
    color: #FA6030;
    margin-bottom: 20px;
    font-size: 18px;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-team-section {
    position: relative;
    padding-top: 5%;
    padding-bottom: 8%;
    background-color: #f9f9f9;
}

.about-team-section h2 {
    position: relative;
    padding-left: 15px;
}

.about-team-section h2::before {
    content: "";
    background: linear-gradient(89.78deg, #FA6030 -0.01%, #FFC876 99.83%);
    height: 100%;
    width: 2px;
    position: absolute;
    left: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    margin: 0 auto;
    margin-top: 50px;
}

.team-member {
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-image {
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member-name {
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 18px;
    font-weight: 500;
    color: #FA6030;
    margin-bottom: 12px;
}