/* Inherits basic styles from landing.css via HTML inclusion, adding specific overrides */

.about-hero {
    padding: 150px 20px 50px;
    text-align: center;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.about-hero span {
    background: linear-gradient(45deg, #ff9f43, #ff6b6b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    font-size: 18px;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px;
    flex-wrap: wrap;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    width: 500px;
    color: #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 159, 67, 0.3);
}

.glass-card h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.glass-card ul {
    list-style-position: inside;
    margin-top: 15px;
}

.glass-card li {
    margin-bottom: 10px;
    color: #bbb;
}

.glass-card strong {
    color: #ff9f43;
}