.about {
    color: white;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url('../assets/images/0.jpg');
    background-size: cover;
    background-position: center;
}


.about-story,
.about-process {
    padding: 80px 10%;
    text-align: center;
}
.about-process {
    color: black;
}

.about-story h2,
.about-process h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-story p {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
}

.about-features {
    padding: 80px 10%;
}

.about-features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    transition: .3s;
    min-height: 220px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.about-process {
    background: #f8f8f8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.step span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    border-radius: 50%;
    background: #d4af37;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.about-cta {
    padding: 80px 10%;
    text-align: center;
}

.about-cta h2 {
    margin-bottom: 20px;
}

.about-cta p {
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: .3s;
}

.cta-btn:hover {
    opacity: .9;
}

.about-overlay p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}