/* Static About page. Extracted verbatim from the inline <style> block that
   templates/about.html used to carry. Every selector is scoped under the
   .about-page wrapper so the rules keep matching only this page's markup (as the
   page-local inline block did); declarations are unchanged. font-family is left
   exactly as the original had it (the global body font is Orbitron, so the
   explicit families are load-bearing). */

.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-page .top-padding {
    padding-top: 80px;
}

.about-page .about-title {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
}

.about-page .content-card {
    background-color: rgba(40, 0, 40, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.about-page .section-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.about-page .content-card p {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.about-page .value-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-page .value-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    display: inline-block;
}

.about-page .value-text {
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .about-page .about-title {
        font-size: 2rem;
    }

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

    .about-page .content-card {
        padding: 20px;
        width: 100%;
        border-radius: 10px;
    }

    .about-page {
        padding: 0 5px;
        max-width: 100%;
    }

    .about-page .top-padding {
        padding-top: 100px;
    }

    .about-page .value-item {
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
    }

    .about-page .value-icon {
        font-size: 1.5rem;
        margin-right: 15px;
        margin-top: 2px;
    }

    .about-page .value-text {
        font-size: 1.05rem;
        line-height: 1.4;
        flex: 1;
    }
}
