/* style/about.css */
.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #ffffff; /* Assuming shared.css sets body background to white or light color */
}

.page-about__hero-section {
    padding-top: var(--header-offset, 120px); /* Apply header offset */
    background-color: #26A9E0; /* Primary brand color for hero */
    color: #ffffff;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about__hero-content {
    max-width: 800px;
    margin-right: 40px;
}

.page-about__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-about__intro-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-about__hero-image-wrapper {
    flex-shrink: 0;
}

.page-about__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__section {
    padding: 60px 0;
}

.page-about__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-about__dark-bg {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-about__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Primary brand color for titles */
}

.page-about__section-title--white {
    color: #ffffff;
}

.page-about__text-block {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__text-block--white {
    color: #ffffff;
}

.page-about__content-grid,
.page-about__feature-grid,
.page-about__info-grid,
.page-about__future-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-about__card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
}

.page-about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-about__card--dark {
    background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent dark for dark background */
    color: #ffffff;
    box-shadow: none;
}
.page-about__card--dark:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-about__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #26A9E0; /* Primary brand color */
}

.page-about__card-title--white {
    color: #ffffff;
}

.page-about__card-text {
    font-size: 1em;
    color: #555555;
}

.page-about__card-text--white {
    color: #f0f0f0;
}

.page-about__link-text {
    color: #26A9E0; /* Primary brand color for links */
    text-decoration: underline;
}

.page-about__link-text:hover {
    color: #1a7bb0; /* Darker shade on hover */
}

/* Buttons */
.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-about__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
    margin-right: 15px;
}

.page-about__btn-primary:hover {
    background-color: #1a7bb0;
    border-color: #1a7bb0;
}

.page-about__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-about__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #1a7bb0;
    border-color: #1a7bb0;
}

.page-about__cta-buttons {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Feature cards */
.page-about__feature-icon {
    width: 200px; /* Min size for feature images */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-about__feature-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-about__feature-description {
    font-size: 0.95em;
    color: #555555;
}

/* Content with image side-by-side */
.page-about__content-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-about__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-about__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__text-content {
    flex: 2;
    min-width: 300px;
}