/* style/about.css */
.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A2E47; /* Main background color */
}

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

.page-about__hero {
    background: linear-gradient(135deg, #1A2E47 0%, #3a506b 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: page-about__hero-animate 15s infinite linear;
}

.page-about__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: page-about__hero-animate 10s infinite reverse linear;
}

@keyframes page-about__hero-animate {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(50px, 50px) scale(1.2); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

.page-about__title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-about__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #1A2E47; /* Midnight Blue */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__btn:hover {
    background-color: #E5C100; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-about__btn--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E47;
}

.page-about__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-about__section:last-of-type {
    border-bottom: none;
}

.page-about__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 30px;
    text-align: left;
}

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

.page-about__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-about__paragraph strong {
    color: #FFD700;
}

.page-about__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-about__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-about__text-content {
    flex: 1;
}

.page-about__image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-about__image:hover {
    transform: scale(1.02);
}

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

.page-about__value-card {
    background-color: #2A3E57; /* Slightly lighter blue for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about__value-card:hover {
    transform: translateY(-5px);
    background-color: #3A4E67;
}

.page-about__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-about__card-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
}

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

.page-about__cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(90deg, #1A2E47, #0F1D2B); /* Darker gradient for CTA */
}

.page-about__cta-content {
    max-width: 800px;
}

.page-about__cta .page-about__heading {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-about__cta .page-about__paragraph {
    color: #F0F0F0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-about__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-about__content-wrapper--reverse {
        flex-direction: column;
    }

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

    .page-about__image-container {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-about__title {
        font-size: 2.5em;
    }

    .page-about__subtitle {
        font-size: 1.2em;
    }

    .page-about__heading {
        font-size: 2em;
    }

    .page-about__grid {
        grid-template-columns: 1fr;
    }

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

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

    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-about__title {
        font-size: 2em;
    }

    .page-about__subtitle {
        font-size: 1em;
    }

    .page-about__heading {
        font-size: 1.8em;
    }

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