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

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

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #B22222, #FFD700);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: page-about__hero-pulse 10s infinite alternate;
    z-index: 0;
}

@keyframes page-about__hero-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0.5; }
}

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

.page-about__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #eee;
    position: relative;
    z-index: 1;
}

/* General Section Styling */
.page-about__section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-about__section:nth-of-type(even) {
    background-color: #fff;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #B22222;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Buttons */
.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
    margin: 10px;
    cursor: pointer;
}

.page-about__btn--primary {
    background-color: #B22222;
    color: #fff;
    border: 2px solid #B22222;
}

.page-about__btn--primary:hover {
    background-color: #8c1a1a;
    transform: translateY(-3px);
}

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

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

/* Story Section */
.page-about__story-content,
.page-about__values-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-about__story-content .page-about__image-block {
    order: 2;
}

.page-about__story-content .page-about__text-block {
    order: 1;
}

.page-about__values-content .page-about__image-block {
    order: 1;
}

.page-about__values-content .page-about__text-block {
    order: 2;
}

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

.page-about__image-block {
    flex: 1;
    text-align: center;
}

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

.page-about__story p,
.page-about__values ul {
    font-size: 1.1em;
    color: #555;
}

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

.page-about__values li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #333;
}

.page-about__values li strong {
    color: #B22222;
}

.page-about__values li::before {
    content: '✔';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Mission & Vision Section */
.page-about__mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-about__card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-about__card-title {
    font-size: 1.8em;
    color: #B22222;
    margin-bottom: 15px;
}

.page-about__card p {
    color: #666;
}

/* Call to Action Section */
.page-about__cta {
    background-color: #B22222;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

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

.page-about__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-about__cta-buttons .page-about__btn--primary {
    background-color: #FFD700;
    color: #B22222;
    border-color: #FFD700;
}

.page-about__cta-buttons .page-about__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #B22222;
}

.page-about__cta-buttons .page-about__btn--secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-about__cta-buttons .page-about__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__hero-subtitle {
        font-size: 1.2em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__story-content,
    .page-about__values-content {
        flex-direction: column;
        text-align: center;
    }
    .page-about__story-content .page-about__image-block,
    .page-about__values-content .page-about__image-block {
        order: unset;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
    .page-about__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 20px;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-subtitle {
        font-size: 1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-about__card {
        padding: 30px;
    }
    .page-about__card-icon {
        width: 60px;
        height: 60px;
    }
    .page-about__card-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-text {
        font-size: 1em;
    }
    .page-about__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-about__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__hero-subtitle {
        font-size: 0.9em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-about__card-title {
        font-size: 1.3em;
    }
    .page-about__cta-title {
        font-size: 1.5em;
    }
}