.about_hero {
    background-color: #f8f9fa;
    padding: 100px 20px;
    text-align: center;
    margin-top: 60px; /* Space for fixed navbar */
}

.about_hero h1 {
    font-size: 3rem;
    color: #333;
}

.about_section {
    padding: 50px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about_text {
    max-width: 800px;
    margin-bottom: 50px;
}

.about_features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature_card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 280px;
    transition: transform 0.3s;
}

.feature_card:hover {
    transform: translateY(-10px);
}

.feature_card h3 {
    margin: 15px 0;
    color: #333;
}