/* static/about.css */

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1em;
    color: #f0f0f0; /* Slightly brighter text for more contrast */
}

.page-title {
    text-align: center;
    font-size: 1.8em; /* Bigger title for more impact */
    margin: 0.8em 0;
    color: #fff;
    text-shadow: 0 0 5px rgba(35, 130, 95, 0.7); /* Subtle glow with #23825f */
}

.about-section {
    background: #1f1f1f; /* Darker, richer background */
    padding: 1.2em;
    border-radius: 8px; /* Slightly larger radius for smoother edges */
    margin-bottom: 1.2em;
    font-size: 0.95em;
    border-left: 4px solid #23825f; /* Adds a pop of color on the side */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.about-section h3 {
    margin-top: 0;
    margin-bottom: 0.6em;
    color: #23825f; /* Your requested color */
    font-size: 1.3em;
    font-weight: 600;
    text-transform: uppercase; /* Adds some boldness */
}

.about-section p {
    margin: 0.5em 0;
    line-height: 1.5; /* Better readability */
}

/* Links styling with more vibrancy */
.about-section a {
    color: #50c878; /* Brighter green for links to stand out */
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-section a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .about-container {
        padding: 0.5em;
    }

    .page-title {
        font-size: 1.5em;
    }

    .about-section {
        font-size: 0.9em;
        padding: 1em;
    }

    .about-section h3 {
        font-size: 1.2em;
    }
}
