/* --- ABOUT PAGE HEADER --- */
.page-header {
    /* Create a folder 'images' or put 'about-bg.jpg' in the same folder */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('about-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* --- STORY & TIMELINE SECTION --- */
.story-text .lead {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.8;
}

.timeline {
    border-left: 4px solid var(--primary); /* Uses color from style.css */
    padding-left: 30px;
    margin-top: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

/* The little dot on the timeline */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -39px; /* Adjusts dot position to sit on the line */
    top: 5px;
    width: 14px;
    height: 14px;
    background-color: var(--accent); /* Uses color from style.css */
    border-radius: 50%;
    border: 2px solid #fff;
}

.timeline-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

/* --- IMAGE STYLING --- */
.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.02);
}

/* --- VALUE CARDS --- */
.value-card {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

