/* About Page Specific Styles */

/* OPTION 4: Modern Card Stack */
.hero-option-4 {
    padding: 80px 60px;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}
.hero-option-4::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}
.hero-option-4 .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.hero-option-4 h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-option-4 .highlight {
    color: var(--accent);
}
.hero-option-4 p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}
.hero-option-4 .feature-cards {
    display: grid;
    gap: 16px;
}
.hero-option-4 .feature-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero-option-4 .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}
.hero-option-4 .feature-text h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.hero-option-4 .feature-text p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

/* OPTION 5: Minimalist Timeline */
.hero-option-5 {
    padding: 80px 60px;
    background: white;
}
.hero-option-5 .content-area {
    max-width: 1000px;
    margin: 0 auto;
}
.hero-option-5 .top-section {
    text-align: center;
    margin-bottom: 60px;
}
.hero-option-5 h2 {
    font-size: 56px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}
.hero-option-5 .subtitle {
    font-size: 24px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-option-5 p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}
.hero-option-5 .timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.hero-option-5 .timeline-item {
    position: relative;
    padding-left: 40px;
}
.hero-option-5 .timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}
.hero-option-5 .timeline-year {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}
.hero-option-5 .timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.hero-option-5 .timeline-desc {
    font-size: 14px;
    color: var(--gray-600);
}
