/* ABOUT US PAGE STYLING */
.about-full-page {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    margin: 0 auto;
    padding-top: 50px; 
    padding-bottom: 80px;
}

/* 1. HERO HEADER & VISION */
.about-hero {
    text-align: center;
    padding: 60px 20px 40px;
    margin-bottom: 40px;
}

.about-accent-text {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 30px;
}

.about-text-gradient {
    background: linear-gradient(90deg, #0f172a 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.vision-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #00d4ff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vision-box h2 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.vision-box p {
    color: #64748b;
    line-height: 1.6;
}

/* 2. CORE VALUES */
.section-heading {
    text-align: center;
    font-size: 2rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 40px;
}

.about-values-section {
    padding: 40px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.value-item svg {
    color: #00d4ff;
    width: 35px;
    height: 35px;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.value-item p {
    color: #64748b;
    line-height: 1.5;
}

/* 3. TIMELINE */
.about-timeline-section {
    background-color: #eef2f6;
    padding: 60px 20px;
    margin-top: 60px;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    border-left: 3px solid #00d4ff;
    padding-left: 20px;
}

.timeline-item {
    position: relative;
    padding: 20px 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 25px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #00d4ff;
    border: 3px solid #f8fafc;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.timeline-event {
    color: #334155;
    font-size: 1rem;
}

/* Responsivitate */
@media(max-width: 768px) {
    .about-title {
        font-size: 2.2rem;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .timeline-container {
        padding-left: 10px;
        border-left: none;
    }
    .timeline-item::before {
        display: none;
    }
}