.about-hero{
    position: relative;
    min-height: 520px;
    background-image: url("../img/optica-2.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.about-overlay{
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        to right,
        rgba(8,24,36,0.96),
        rgba(8,24,36,0.65)
    );
}

.about-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.about-content p{
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.about-content h1{
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.about-content span{
    color: #a6ff00;
    display: block;
}

.about-content h3{
    opacity: 0.8;
    line-height: 1.7;
    font-weight: normal;
}

.history-section{
    padding: 90px 60px;
}

.section-title{
    text-align: center;
    margin-bottom: 70px;
}

.section-title p{
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.section-title h2{
    font-size: 52px;
}

.section-title span{
    color: #a6ff00;
}

.timeline{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item{
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-year{
    min-width: 120px;
    background: #a6ff00;
    color: #081824;
    padding: 16px;
    border-radius: 18px;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    position: sticky;
    top: 20px;
}

.timeline-card{
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    padding: 40px;
}

.timeline-card h3{
    font-size: 34px;
    margin-bottom: 25px;
    color: #a6ff00;
}

.timeline-card p{
    opacity: 0.82;
    line-height: 1.9;
    margin-bottom: 20px;
}

.philosophy{
    padding: 20px 60px 90px;
}

.philosophy-box{
    background: #a6ff00;
    border-radius: 34px;
    padding: 60px;
    color: #081824;
}

.philosophy-box p{
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: bold;
}

.philosophy-box h2{
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 35px;
}

.philosophy-box span{
    display: block;
    margin-top: 10px;
}

.philosophy-box h3{
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats{
    padding: 0 60px 90px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.stat-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 26px;
    padding: 45px 30px;
    text-align: center;
}

.stat-card h2{
    font-size: 58px;
    color: #a6ff00;
    margin-bottom: 15px;
}

.stat-card p{
    opacity: 0.8;
}

.about-final{
    padding: 0 60px 100px;
}

.about-final-box{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 34px;
    padding: 70px;
    text-align: center;
}

.about-final-box h2{
    font-size: 58px;
    margin-bottom: 25px;
}

.about-final-box span{
    color: #a6ff00;
}

.about-final-box p{
    opacity: 0.82;
    font-size: 22px;
}


