/* style/about.css */

/* Base styles for the page content */
.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css (#000) */
}

/* Shared container for content sections */
.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section titles */
.page-about__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Text blocks */
.page-about__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #f0f0f0;
}

/* List styles */
.page-about__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-about__list-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #017439;
    padding: 15px 20px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #f0f0f0;
    border-radius: 4px;
}

.page-about__list-item strong {
    color: #ffffff;
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    padding: 120px 0 60px; /* Base padding, header offset handled by shared.css or here if not on body */
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-about__hero-section .page-about__container {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}