/* About Section Styles - Fully Integrated with Deep Mind Theme Variables */

/*
   NOTE: Ensure the :root variables defined in your main CSS file are loaded
   before this section, as this code relies on those variables.
*/

.about-section {
    background-color: var(--dm-color-white); /* Pure white background for the content box */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Soft shadow for a modern look */
    padding: 40px;
    max-width: 800px;
    text-align: center;
    margin: auto; /* Center the div on the page */
    /* If this is the main About section container, add top/bottom padding for spacing */
    /* Example: padding-top: 80px; padding-bottom: 80px; */
}

.about-section h2 {
    color: var(--dm-color-dark-teal); /* Heading color from your theme's deep teal */
    font-size: 2.2em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px; /* Space for the underline */
}

.about-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Centers the underline */
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--dm-color-primary-cyan); /* Vibrant primary cyan for the underline */
    border-radius: 2px;
}

.about-section p {
    color: var(--dm-color-text-light); /* Paragraph text color from your theme's light text */
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify; /* Justify text for a clean, professional appearance */
    margin-bottom: 20px;
}