/* Import general styles for header/footer */
@import url('styles.css');

/* About Hero Section */
.about-hero {
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #e8eeff, #ffffff);
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Sub-navigation tabs */
.about-subnav {
    text-align: center;
    margin: 40px 0 20px;
}

.tabs {
    display: inline-flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.tab-link {
    background: #ffffff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.tab-link:hover {
    background: #2b68ff;
    color: #fff;
}

.tab-link.active {
    background: #2b68ff;
    color: #fff;
}

/* Tab content */
.tab-content {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h2 {
    color: #2b68ff;
    margin-bottom: 15px;
}

.tab-pane h3 {
    color: #2b68ff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tab-pane h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tab-pane p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Main team section */
.team-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
    margin-bottom: 40px;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.team-member .team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Investor outreach team */
.team-investor {
    text-align: center;
    margin-bottom: 40px;
}

.team-investor-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.investor-member {
    text-align: center;
}

.investor-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 5px;
}
