/* Hero section for About page */
.about-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #222, #111);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 20px;
    color: #ccc;
}

.about-hero .buttons {
    margin-top: 20px;
}

.about-hero .buttons a {
    margin: 0 10px;
    text-decoration: none;
}

/* Values and Beta section */
.about-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    color: #eee;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section ul li {
    margin-bottom: 15px;
    padding-left: 1em;
    position: relative;
}

.about-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff375f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-hero .buttons a {
        margin: 5px 0;
        width: 100%;
        display: inline-block;
        text-align: center;
    }

    .about-section {
        padding: 40px 20px;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }
}
