/* Business Page Styles */
.business-hero {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.business-hero h1 {
    color: var(--primary-color);
    font-size: 48px;
    margin-bottom: 20px;
}

.business-hero .lead {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.business-people {
    padding: 80px 0;
    background-color: white;
}

.business-people h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 30px;
}

.business-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

.business-feature {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.business-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.business-feature i {
    color: var(--primary-color);
}

.business-feature h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 20px 0;
}

.business-feature p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

.business-values {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.business-values h2 {
    color: var(--primary-color);
    font-size: 36px;
}

.value-card {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Business Overview Page Styles */
.business-overview-hero {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.business-overview-hero h1 {
    color: var(--primary-color);
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
}

.overview-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.overview-card i {
    color: var(--primary-color);
}

.overview-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin: 20px 0;
}

.overview-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

.business-overview-team {
    padding: 80px 0;
    background-color: white;
}

.business-overview-team h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 30px;
}

.team-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    min-width: 150px;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-color);
    font-size: 16px;
    margin: 0;
}

.business-overview-history {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.business-overview-history h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 30px;
}

.history-description,
.history-locations {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.business-overview-services {
    padding: 80px 0;
    background-color: white;
}

.business-overview-services h2 {
    color: var(--primary-color);
    font-size: 36px;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card i {
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin: 20px 0;
}

.service-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Business History Page Styles */
.business-history-intro {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.business-history-intro h1 {
    color: var(--primary-color);
    font-size: 48px;
    margin-bottom: 30px;
}

.history-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.business-history-content {
    padding: 80px 0;
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    top: 15px;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -60px;
}

.timeline-content {
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

.business-history-global {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.business-history-global h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 30px;
}

.global-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.global-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.world-map {
    position: relative;
    margin-top: 30px;
}

.location-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    transform: translate(-50%, -50%);
}

.business-history-services {
    padding: 80px 0;
    background-color: white;
}

.business-history-services h2 {
    color: var(--primary-color);
    font-size: 36px;
}

.service-evolution {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-evolution:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-evolution i {
    color: var(--primary-color);
}

.service-evolution h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 20px 0 10px;
}

.service-evolution p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Business Overview Page Styles */
.business-transactions {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.business-transactions h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 30px;
}

.business-transactions .lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.business-capabilities {
    padding: 80px 0;
    background-color: white;
}

.capability-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.capability-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.capability-card .card-content {
    padding: 30px;
    background: white;
}

.capability-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.capability-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.business-services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .card-content {
    padding: 30px;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-color-dark);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-hero {
        padding: 60px 0;
    }
    
    .business-hero h1 {
        font-size: 36px;
    }
    
    .business-hero .lead {
        font-size: 20px;
    }
    
    .business-people,
    .business-values {
        padding: 60px 0;
    }
    
    .business-people h2,
    .business-values h2 {
        font-size: 30px;
    }
    
    .business-feature {
        margin-bottom: 30px;
    }
    
    .business-overview-hero h1 {
        font-size: 36px;
    }
    
    .business-overview-team,
    .business-overview-history,
    .business-overview-services {
        padding: 60px 0;
    }
    
    .business-overview-team h2,
    .business-overview-history h2,
    .business-overview-services h2 {
        font-size: 30px;
    }
    
    .team-stats {
        margin-top: 30px;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .business-history-intro h1 {
        font-size: 36px;
    }
    
    .history-intro {
        font-size: 18px;
    }
    
    .business-history-content {
        padding: 60px 0;
    }
    
    .timeline::after {
        left: 0;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 22px;
        left: 0;
        right: auto;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: -40px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .global-stats {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .service-evolution {
        margin-bottom: 30px;
    }
    
    .business-transactions {
        padding: 60px 0;
    }
    
    .business-transactions h2 {
        font-size: 30px;
    }
    
    .business-transactions .lead {
        font-size: 18px;
    }
    
    .capability-card {
        margin-bottom: 30px;
    }
    
    .capability-card img {
        height: 250px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-card img {
        height: 180px;
    }
} 