
        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Page Header with Background Image */
.page-header {
    position: relative;
    background: url('../images/about.webp') center/cover no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 10, 0.65);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 8px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .active {
    color: #fde68a;
}

/* Founder Section */
.founder-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

.founder-image {
    background: #f97316;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.founder-image i {
    font-size: 48px;
    margin-bottom: 12px;
}

.founder-image h3 {
    font-size: 18px;
}

.founder-image p {
    font-size: 14px;
    opacity: 0.9;
}

.founder-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1e293b;
}

.founder-info h2 span {
    color: #f97316;
}

.founder-info .title {
    color: #f97316;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.founder-info p {
    color: #475569;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.founder-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.founder-social a {
    width: 38px;
    height: 38px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    text-decoration: none;
}

.founder-social a:hover {
    background: #f97316;
    color: #fff;
}

/* Partner Section */
.partner-section {
    background: #fff;
    padding: 30px;
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
    text-align: center;
}

.partner-section .icon {
    font-size: 40px;
    color: #f97316;
    margin-bottom: 10px;
}

.partner-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.partner-section p {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.team-card {
    background: #fff;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.team-card .avatar {
    font-size: 48px;
    color: #f97316;
    margin-bottom: 8px;
}

.team-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.team-card .role {
    font-size: 13px;
    color: #f97316;
    font-weight: 500;
}

.team-card small {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-section {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header {
        height: 160px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .founder-info {
        text-align: center;
    }
    
    .founder-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-section {
        padding: 20px;
    }
    
    .page-header {
        height: 140px;
    }
    
    .page-header h1 {
        font-size: 22px;
    }
}