/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.page-about__hero {
    background: linear-gradient(135deg, #0047AB 0%, #003380 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    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__pulse 4s infinite ease-in-out;
}

.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__pulse 4s infinite reverse ease-in-out;
}

@keyframes page-about__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.page-about__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
}

.page-about__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-about__hero-description a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-about__hero-description a:hover {
    text-decoration: underline;
}

.page-about__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #0047AB;
    font-size: 1.1em;
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-about__section {
    padding: 60px 0;
    background-color: #fff;
}

.page-about__section--alt-bg {
    background-color: #f0f2f5;
}

.page-about__section-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-about__section-content--reverse {
    flex-direction: row-reverse;
}

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

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

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

.page-about__section-title {
    font-size: 2.2em;
    color: #0047AB;
    margin-bottom: 25px;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin-top: 10px;
    border-radius: 2px;
}

.page-about__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #555;
}

.page-about__text-content p a {
    color: #0047AB;
    text-decoration: none;
    font-weight: bold;
}

.page-about__text-content p a:hover {
    text-decoration: underline;
}

.page-about__text-content ul {
    list-style: none;
    padding: 0;
}

.page-about__text-content ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555;
}

.page-about__text-content ul li a {
    color: #0047AB;
    text-decoration: none;
    font-weight: bold;
}

.page-about__text-content ul li a:hover {
    text-decoration: underline;
}

.page-about__cta-section {
    background-color: #0047AB;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.page-about__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-about__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-about__cta-description a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-about__cta-description a:hover {
    text-decoration: underline;
}

.page-about__btn--secondary {
    background-color: #FFD700;
    color: #0047AB;
    font-size: 1.2em;
    padding: 15px 30px;
}

.page-about__btn--secondary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

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

    .page-about__section-content--reverse {
        flex-direction: column;
    }

    .page-about__section-title::after {
        margin: 10px auto 0 auto;
    }

    .page-about__hero-title {
        font-size: 2.5em;
    }

    .page-about__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2em;
    }

    .page-about__hero-description,
    .page-about__cta-description {
        font-size: 1em;
    }

    .page-about__section-title {
        font-size: 1.8em;
    }

    .page-about__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

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

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

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }

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

    .page-about__cta-title {
        font-size: 1.8em;
    }

    .page-about__text-content ul li {
        padding-left: 25px;
        background-size: 16px;
    }
}