
    .page-header {
        padding: 100px 0;
        text-align: center;
        color: white;
    }
    
    .page-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .breadcrumb {
        font-size: 1.1rem;
    }
    
    .breadcrumb a {
        color: #ff8c00;
        text-decoration: none;
    }
    
    .breadcrumb span {
        color: #ddd;
    }
    
    .about-intro-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        padding: 80px 0;
    }
    
    .about-intro-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .text-center {
        text-align: center;
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 60px 0;
    }
    
    .value-card {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .value-card:hover {
        transform: translateY(-10px);
    }
    
    .value-icon {
        font-size: 3rem;
        color: #ff6b00;
        margin-bottom: 20px;
    }
    
    .timeline {
        position: relative;
        max-width: 800px;
        margin: 60px auto;
        padding: 20px;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: #ff6b00;
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 50px;
        width: calc(50% - 40px);
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
        padding-right: 60px;
    }
    
    .timeline-item:nth-child(even) {
        left: 50%;
        text-align: left;
        padding-left: 60px;
    }
    
    .timeline-date {
        background: #ff6b00;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .timeline-content {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 60px 0;
    }
    
    .team-member {
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }
    
    .team-member-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    
    .team-member-info {
        padding: 20px;
    }
    
    .team-role {
        color: #ff8c00;
        font-style: italic;
        display: block;
        margin: 5px 0 15px;
    }
    
    .team-cta {
        text-align: center;
        padding: 40px 0;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        padding: 80px 0;
    }
    
    .stat-card {
        text-align: center;
    }
    
    .stat-number {
        font-size: 4rem;
        font-weight: bold;
        color: #ff6b00;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 1.2rem;
        color: #666;
        margin-top: 10px;
    }
    
    .commitment-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        padding: 80px 0;
    }
    
    .commitment-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .commitment-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }
    
    .commitment-list li {
        padding: 10px 0;
        font-size: 1.1rem;
    }
    
    .commitment-list i {
        color: #28a745;
        margin-right: 10px;
    }
    
    .cta-section {
        padding: 100px 0;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 30px;
    }
    
    .btn-light {
        background: white;
        color: #ff6b00;
    }
    
    .btn-outline-light {
        border: 2px solid white;
        color: white;
        background: transparent;
    }
    
    @media (max-width: 768px) {
        .about-intro-content,
        .commitment-content {
            grid-template-columns: 1fr;
        }
        
        .timeline::before {
            left: 30px;
        }
        
        .timeline-item {
            width: calc(100% - 80px);
            left: 80px !important;
            text-align: left !important;
            padding: 0 0 0 40px !important;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .page-title {
            font-size: 2rem;
        }
    }
    