.pageBanner {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--color-surface);
    position: relative;
    overflow: hidden;
}

.pageBanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.pageBanner h1 {
    font-family: 'Figtree', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
}

.pageBanner p {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 400;
    position: relative;
}

.companyIntro {
    padding: 100px 0;
    background: var(--color-surface);
}

.introContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.introText h2 {
    font-family: 'Figtree', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.slogan {
    font-size: 22px;
    color: var(--color-cta);
    font-weight: 600;
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 4px solid var(--color-cta);
}

.introText p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 20px;
}

.introImage {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.introImage:hover {
    transform: scale(1.02);
}

.development {
    padding: 100px 0;
    background: var(--color-background);
}

.timeline {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 2px;
}

.timelineItem {
    position: relative;
    margin-bottom: 56px;
    display: flex;
    align-items: center;
}

.timelineItem:nth-child(odd) {
    flex-direction: row-reverse;
}

.timelineYear {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-surface);
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.timelineContent {
    width: calc(50% - 80px);
    background: var(--color-surface);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
}

.timelineContent h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.timelineContent p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.culture {
    padding: 100px 0;
    background: var(--color-surface);
}

.cultureGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.cultureCard {
    text-align: center;
    padding: 56px 44px;
    background: var(--color-background);
    border-radius: 16px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.cultureCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.cultureIcon svg {
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    color: var(--color-primary);
}

.cultureCard h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.cultureCard p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.honor {
    padding: 100px 0;
    background: var(--color-background);
}

.honorGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.honorItem {
    background: var(--color-surface);
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.honorItem:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.honorIcon svg {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.honorItem p {
    font-size: 17px;
    color: var(--color-text);
    font-weight: 600;
}

@media (max-width: 768px) {
    .introContent {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timelineItem,
    .timelineItem:nth-child(odd) {
        flex-direction: column;
    }
    
    .timelineYear {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 24px;
    }
    
    .timelineContent {
        width: 100%;
        margin-left: 70px;
    }
    
    .cultureGrid,
    .honorGrid {
        grid-template-columns: 1fr;
    }
}
