.page-title {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.page-title h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.breadcrumbs {
    color: #666;
    font-size: 14px;
}

.breadcrumbs a {
    color: #f15a2b;
    text-decoration: none;
}

.breadcrumbs .current {
    color: #999;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(241, 90, 43, 0.8), rgba(241, 90, 43, 0.8)), url('../imgs/cable-img-1.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-intro {
    margin-bottom: 60px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.about-text .highlight {
    color: #f15a2b;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f15a2b;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Mission Vision Values */
.mvv-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mvv-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: #f15a2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.mvv-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.mvv-item p {
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.founders-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.founders-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.team-photo-placeholder {
    width: 100%;
    height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ddd;
}

.team-info {
    padding: 25px 20px;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.team-position {
    color: #f15a2b;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #f15a2b;
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f15a2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.feature-item h4 {
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: #f15a2b;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mvv-item,
    .team-info {
        padding: 25px 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}