.about-journey {
    padding: 2em;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.milestone-list {
    margin: 0;
    padding: 0;
}

.milestone-list li {
    position: relative;
    padding: 1em 0 1em 2em;
    border-left: 2px solid var(--oxpins-base);
    margin-left: 1em;
}

.milestone-date {
    font-weight: 700;
    color: var(--oxpins-base);
    display: block;
    margin-bottom: 0.5em;
}

.growth-list li {
    padding: 0.75em 0;
    font-size: 16px;
}

.growth-list li i {
    color: var(--oxpins-base);
    margin-right: 10px;
    font-size: 1.2em;
}

.impact-card {
    background: #fff;
    border-radius: 10px;
    padding: 2em;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.impact-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5em;
}

.impact-card__header i {
    font-size: 2em;
    color: var(--oxpins-base);
    margin-right: 15px;
}

.impact-card__header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.impact-stats li {
    padding: 0.5em 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.impact-stats li:last-child {
    border-bottom: none;
}

.impact-stats strong {
    color: var(--oxpins-base);
    margin-right: 5px;
}

.about-three__list-box {
    background: #fff;
    border-radius: 10px;
    padding: 2em;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-three__list-box h3 {
    font-size: 24px;
    margin-bottom: 1.5em;
    color: var(--oxpins-black);
}

.about-three__list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5em;
}

.about-three__list li:last-child {
    margin-bottom: 0;
}

.about-three__list .icon {
    width: 45px;
    height: 45px;
    background: var(--oxpins-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-three__list .icon i {
    color: #fff;
    font-size: 20px;
}

.about-three__list .text h4 {
    font-size: 18px;
    margin: 0 0 5px;
    color: var(--oxpins-black);
}

.about-three__list .text p {
    margin: 0;
    color: var(--oxpins-base);
    font-weight: 500;
}

.about-three__list .text small {
    color: #777;
    display: block;
    margin-top: 5px;
}

.contact-page__single {
    background: #fff;
    border-radius: 10px;
    padding: 2em;
    margin-bottom: 2em;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-page__single h3 {
    font-size: 20px;
    margin-bottom: 1em;
    color: var(--oxpins-black);
}

.contact-page__single ul li {
    margin-bottom: 10px;
    color: #777;
}

.contact-page__single ul li i {
    color: var(--oxpins-base);
    margin-right: 10px;
    width: 16px;
}

.contact-page__social {
    display: flex;
    gap: 10px;
    margin-top: 2em;
}

.contact-page__social a {
    width: 40px;
    height: 40px;
    background: var(--oxpins-base);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-page__social a:hover {
    background: var(--oxpins-black);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .about-journey {
        padding: 1em;
    }
    
    .impact-card {
        margin-bottom: 1em;
    }
    
    .milestone-list li {
        padding: 1em 0 1em 1em;
        margin-left: 0.5em;
    }
    
    .about-three__list-box,
    .contact-page__single {
        margin-bottom: 1em;
        padding: 1.5em;
    }
    
    .about-three__list .icon {
        width: 35px;
        height: 35px;
    }
    
    .about-three__list .icon i {
        font-size: 16px;
    }
}
