/* About Hero Section */
.aboutHeroSection {
    padding: 140px 0 100px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

.aboutHeroContent {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.heroBadge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 60px;
    width: fit-content;
}

[data-theme="dark"] .heroBadge {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.85), rgba(7, 15, 32, 0.9));
    border: 1px solid rgba(30, 58, 138, 0.4);
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.12);
}

.companyLogo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logoIcon {
    width: 36px;
    height: 36px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.logoText {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text);
}

.companyTagline {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 600;
    padding-left: 16px;
    border-left: 2px solid var(--color-border);
}

.badgeIcon {
    font-size: 20px;
}

.badgeText {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

[data-theme="dark"] .badgeText {
    color: var(--color-text);
}

.aboutHeroTitle {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: var(--color-text);
}

[data-theme="dark"] .aboutHeroTitle {
    color: #f1f5f9;
}

.aboutHeroDescription {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

[data-theme="dark"] .aboutHeroDescription {
    color: #cbd5e1;
}

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

.heroStat {
    text-align: left;
}

.statValue {
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    display: block;
}

[data-theme="dark"] .statValue {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statLabel {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .statLabel {
    color: #94a3b8;
}

.heroActions {
    margin-top: 16px;
}

.btnHeroPrimary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="dark"] .btnHeroPrimary {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.btnHeroPrimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btnHeroPrimary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btnHeroPrimary svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.btnHeroPrimary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btnHeroPrimary:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.btnHeroPrimary:hover::before {
    opacity: 1;
}

.btnHeroPrimary:hover span,
.btnHeroPrimary:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Hero Visual */
.aboutHeroVisual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroVisualCard {
    position: relative;
    width: 100%;
    min-height: 500px;
}

/* Founders Grid */
.foundersGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.founderCard {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

[data-theme="dark"] .founderCard {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.7), rgba(7, 15, 32, 0.9));
    border-color: rgba(59, 130, 246, 0.3);
}

.founderCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(30, 58, 138, 0.25);
    border-color: rgba(59, 130, 246, 0.6);
}

[data-theme="dark"] .founderCard:hover {
    box-shadow: 0 16px 40px rgba(30, 58, 138, 0.5);
}

.founder1 {
    animation-delay: 0s;
}

.founder2 {
    animation-delay: 1s;
}

.founderImage {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(30, 58, 138, 0.3);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .founderImage {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.4);
}

.founderImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founderBadge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    color: white;
}

[data-theme="dark"] .founderBadge {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-color: #0f172a;
}

.founderBadge svg {
    width: 18px;
    height: 18px;
}

.founderInfo {
    text-align: center;
    width: 100%;
}

.founderInfo h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

[data-theme="dark"] .founderInfo h4 {
    color: #f1f5f9;
}

.founderRole {
    font-size: 13px;
    color: #1e3a8a;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .founderRole {
    color: #60a5fa;
}

.founderDescription {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
    text-align: center;
}

[data-theme="dark"] .founderDescription {
    color: #cbd5e1;
}

.founderDescription strong {
    color: var(--color-text);
    font-weight: 700;
}

[data-theme="dark"] .founderDescription strong {
    color: #f1f5f9;
}

/* Floating Info Cards */
.floatingInfoCard {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
    animation: float 5s ease-in-out infinite;
    z-index: 3;
}

[data-theme="dark"] .floatingInfoCard {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.9), rgba(7, 15, 32, 0.95));
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
}

.card1 {
    top: 60px;
    right: -20px;
    animation-delay: 0.5s;
}

.card2 {
    bottom: 180px;
    left: -40px;
    animation-delay: 1.5s;
}

.card3 {
    bottom: 40px;
    right: -30px;
    animation-delay: 2.5s;
}

.infoCardIcon {
    font-size: 28px;
    flex-shrink: 0;
}

.infoCardText {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.infoCardTitle {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-secondary);
}

[data-theme="dark"] .infoCardTitle {
    color: #94a3b8;
}

.infoCardValue {
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .infoCardValue {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heroVisualGradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

[data-theme="dark"] .heroVisualGradient {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.animateSlideLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animateSlideRight {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Our Story Section */
.ourStorySection {
    background: transparent;
}

[data-theme="dark"] .ourStorySection {
    background: transparent;
}

.storyIntroBox {
    max-width: 800px;
    margin: 48px auto 64px;
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 20px;
}

[data-theme="dark"] .storyIntroBox {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.4), rgba(7, 15, 32, 0.6));
    border: 1px solid rgba(30, 58, 138, 0.3);
}

.storyIntro {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
    font-style: italic;
}

[data-theme="dark"] .storyIntro {
    color: #f1f5f9;
}

.storyAuthor {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .storyAuthor {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Journey Timeline */
.journeyTimeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.journeyTimeline::before {
    content: '';
    position: absolute;
    left: 200px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
        rgba(30, 58, 138, 0.2),
        rgba(59, 130, 246, 0.5),
        rgba(30, 58, 138, 0.2)
    );
}

[data-theme="dark"] .journeyTimeline::before {
    background: linear-gradient(180deg,
        rgba(30, 58, 138, 0.3),
        rgba(59, 130, 246, 0.6),
        rgba(30, 58, 138, 0.3)
    );
}

.timelineItem {
    position: relative;
    margin-bottom: 48px;
    padding-left: 240px;
    min-height: 60px;
}

.timelineDate {
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    text-align: right;
    padding-right: 20px;
}

.timelineDate .dateIcon {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
}

.timelineDate .dateText {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.3;
}

[data-theme="dark"] .timelineDate .dateText {
    color: #60a5fa;
}

.timelineDate.success .dateText {
    color: #059669;
}

[data-theme="dark"] .timelineDate.success .dateText {
    color: #10b981;
}

.timelineDot {
    position: absolute;
    left: 190px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    z-index: 2;
}

[data-theme="dark"] .timelineDot {
    background: #0f172a;
    border-color: #60a5fa;
}

.timelineDot.highlight {
    width: 24px;
    height: 24px;
    left: 188px;
    top: 6px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .timelineDot.highlight {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-color: #0f172a;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
}

.timelineContent {
    position: relative;
}

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

[data-theme="dark"] .timelineText p {
    color: #cbd5e1;
}

.timelineText p strong {
    color: var(--color-text);
    font-weight: 700;
}

[data-theme="dark"] .timelineText p strong {
    color: #f1f5f9;
}

.storyWelcome {
    font-size: 28px !important;
    font-weight: 800 !important;
    text-align: center !important;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 32px !important;
}

[data-theme="dark"] .storyWelcome {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Experience Cards */
.experienceGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.experienceCard {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

[data-theme="dark"] .experienceCard {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.6), rgba(7, 15, 32, 0.8));
    border: 1px solid rgba(30, 58, 138, 0.3);
}

.experienceCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

[data-theme="dark"] .experienceCard:hover {
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.4);
}

.experienceImage {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(30, 58, 138, 0.2);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
}

[data-theme="dark"] .experienceImage {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
}

.experienceCard:hover .experienceImage {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.25);
}

[data-theme="dark"] .experienceCard:hover .experienceImage {
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.5);
}

.experienceImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experienceIcon {
    font-size: 48px;
    margin-bottom: 16px;
}

.experienceName {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

[data-theme="dark"] .experienceName {
    color: #f1f5f9;
}

.experienceRole {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

[data-theme="dark"] .experienceRole {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experienceText {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

[data-theme="dark"] .experienceText {
    color: #cbd5e1;
}

.experienceText strong {
    color: var(--color-text);
    font-weight: 700;
}

[data-theme="dark"] .experienceText strong {
    color: #f1f5f9;
}

/* Our Values Section */
.valuesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.valueCard {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

[data-theme="dark"] .valueCard {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.6), rgba(7, 15, 32, 0.8));
    border: 1px solid rgba(30, 58, 138, 0.3);
}

.valueCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(30, 58, 138, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

[data-theme="dark"] .valueCard:hover {
    box-shadow: 0 16px 40px rgba(30, 58, 138, 0.4);
}

.valueCardIcon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

[data-theme="dark"] .valueCardIcon {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.2));
    color: #60a5fa;
}

.valueCard:hover .valueCardIcon {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    transform: scale(1.1);
}

.valueCardIcon svg {
    width: 32px;
    height: 32px;
}

.valueCardTitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

[data-theme="dark"] .valueCardTitle {
    color: #f1f5f9;
}

.valueCardText {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

[data-theme="dark"] .valueCardText {
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .aboutHeroGrid {
        gap: 60px;
    }

    .aboutHeroTitle {
        font-size: 42px;
    }

    .heroStats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .statValue {
        font-size: 36px;
    }

    .foundersGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .founderImage {
        width: 100px;
        height: 100px;
    }

    .floatingInfoCard {
        padding: 12px 16px;
    }

    .card1 {
        right: -10px;
    }

    .card2 {
        left: -20px;
    }

    .card3 {
        right: -15px;
    }

    .experienceGrid {
        grid-template-columns: 1fr;
    }

    .valuesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .aboutHeroSection {
        padding: 100px 0 60px;
    }

    .aboutHeroGrid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .aboutHeroTitle {
        font-size: 36px;
    }

    .aboutHeroDescription {
        font-size: 17px;
    }

    .heroStats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

    .statValue {
        font-size: 32px;
    }

    .statLabel {
        font-size: 11px;
    }

    .heroActions {
        margin-top: 8px;
    }

    .btnHeroPrimary {
        width: 100%;
        justify-content: center;
    }

    .heroVisualCard {
        min-height: 450px;
    }

    .foundersGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .founderCard {
        padding: 20px;
    }

    .founderImage {
        width: 90px;
        height: 90px;
    }

    .founderInfo h4 {
        font-size: 14px;
    }

    .founderInfo p {
        font-size: 12px;
    }

    .floatingInfoCard {
        padding: 12px 14px;
    }

    .infoCardIcon {
        font-size: 24px;
    }

    .infoCardTitle {
        font-size: 10px;
    }

    .infoCardValue {
        font-size: 14px;
    }

    .card1 {
        top: 40px;
        right: 0;
    }

    .card2 {
        bottom: 160px;
        left: 0;
    }

    .card3 {
        bottom: 30px;
        right: 0;
    }

    .storyIntroBox {
        margin: 32px auto 48px;
        padding: 24px;
    }

    .storyIntro {
        font-size: 18px;
    }

    .journeyTimeline::before {
        left: 20px;
    }

    .timelineItem {
        padding-left: 60px;
    }

    .timelineDate {
        position: static;
        width: auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 12px;
    }

    .timelineDate .dateIcon {
        display: inline-block;
        font-size: 20px;
        margin-right: 8px;
        margin-bottom: 0;
    }

    .timelineDate .dateText {
        display: inline-block;
        font-size: 14px;
    }

    .timelineDot {
        left: 11px;
        width: 18px;
        height: 18px;
    }

    .timelineDot.highlight {
        width: 22px;
        height: 22px;
        left: 9px;
    }

    .timelineText p {
        font-size: 16px;
    }

    .storyWelcome {
        font-size: 22px !important;
    }

    .experienceGrid {
        grid-template-columns: 1fr;
    }

    .valuesGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
