/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for readability on light backgrounds */
}

.page-about__hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-about__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffd700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

.page-about__section--story, .page-about__section--what-we-offer, .page-about__section--vision {
    background-color: #f9f9f9;
}

.page-about__section--values, .page-about__section--why-us {
    background-color: #e0eaf6; /* Lighter blue background */
}

.page-about__bg-dark {
    background-color: #0056b3; /* Main dark blue */
    color: #ffffff;
}

.page-about__bg-dark .page-about__heading, .page-about__bg-dark .page-about__intro-text, .page-about__bg-dark .page-about__subheading {
    color: #ffd700; /* Gold for headings on dark background */
}

.page-about__bg-dark p, .page-about__bg-dark li {
    color: #e0e0e0; /* Lighter text for readability */
}

.page-about__heading {
    font-size: 2.8em;
    color: #0056b3; /* Main blue for headings */
    margin-bottom: 30px;
    text-align: left;
    font-weight: bold;
}

.page-about__heading--center {
    text-align: center;
}

.page-about__heading--white {
    color: #ffffff;
}

.page-about__subheading {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__bg-dark .page-about__subheading {
    color: #ffd700;
}

.page-about__intro-text {
    font-size: 1.15em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555555;
}

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

.page-about__flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-about__content-block {
    flex: 1;
    min-width: 300px;
}

.page-about__image-block {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-about__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    border: 2px solid transparent;
}

.page-about__btn--primary {
    background-color: #ffd700; /* Gold */
    color: #0056b3; /* Dark blue text */
    border-color: #ffd700;
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn--secondary {
    background-color: #0056b3; /* Dark blue */
    color: #ffffff;
    border-color: #0056b3;
}

.page-about__btn--secondary:hover {
    background-color: #003d80;
    border-color: #003d80;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn--light {
    background-color: #ffffff;
    color: #0056b3;
    border-color: #ffffff;
}

.page-about__btn--light:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn--outline-light {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-about__btn--outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-about__bg-dark .page-about__value-card {
    background-color: #003d80; /* Darker blue for cards on dark background */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-about__value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-about__value-card .page-about__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-about__value-card .page-about__subheading {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #0056b3;
}

.page-about__bg-dark .page-about__value-card .page-about__subheading {
    color: #ffd700;
}

.page-about__value-card p {
    font-size: 0.95em;
    color: #666666;
}

.page-about__bg-dark .page-about__value-card p {
    color: #c0c0c0;
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-about__list li {
    background-color: #f0f7ff; /* Very light blue */
    padding: 15px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-about__list li strong {
    color: #0056b3;
    margin-right: 10px;
}

.page-about__bg-dark .page-about__list li {
    background-color: #003d80; /* Darker blue */
    color: #e0e0e0;
}

.page-about__bg-dark .page-about__list li strong {
    color: #ffd700;
}

.page-about__list li::before {
    content: '✔';
    color: #ffd700; /* Gold checkmark */
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0;
}

.page-about__cta-group {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-about__section--cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(45deg, #0056b3, #003d80); /* Dark blue gradient */
    color: #ffffff;
}

.page-about__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .page-about__flex-row {
        flex-direction: column;
    }
    .page-about__flex-row--reverse {
        flex-direction: column-reverse;
    }
    .page-about__title {
        font-size: 2.8em;
    }
    .page-about__heading {
        font-size: 2.2em;
        text-align: center;
    }
    .page-about__subheading {
        font-size: 1.6em;
    }
    .page-about__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__title {
        font-size: 2.2em;
    }
    .page-about__subtitle {
        font-size: 1.2em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__heading {
        font-size: 1.8em;
    }
    .page-about__intro-text {
        font-size: 1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__list li {
        font-size: 0.95em;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .page-about__title {
        font-size: 1.8em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__heading {
        font-size: 1.5em;
    }
    .page-about__subheading {
        font-size: 1.3em;
    }
    .page-about__grid {
        grid-template-columns: 1fr;
    }
    .page-about__btn {
        width: 100%;
        box-sizing: border-box;
    }
}