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

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

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    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, 215, 0, 0.3) 0%, transparent 70%);
    animation: page-about__hero-pulse 10s infinite alternate;
}

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

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

.page-about__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #eee;
    position: relative;
    z-index: 1;
}

.page-about__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #000080; /* Dark blue for contrast on gold */
    border: 2px solid #FFD700;
}

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

.page-about__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #000080; /* Dark blue text on gold */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-about__story, .page-about__mission-vision, .page-about__values, .page-about__why-choose, .page-about__cta {
    padding: 80px 0;
    text-align: center;
}

.page-about__story {
    background-color: #fff;
}

.page-about__mission-vision, .page-about__why-choose, .page-about__cta {
    background-color: #e0e0f0; /* Lighter shade of dark blue for background */
}

.page-about__values {
    background-color: #fff;
}

.page-about__section-title {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #000080;
    position: relative;
    display: inline-block;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

/* Story Section */
.page-about__story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-about__story-content p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    text-align: left;
}

.page-about__story-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-about__mv-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-about__mv-item:hover {
    transform: translateY(-5px);
}

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

.page-about__mv-item p {
    color: #555;
    font-size: 1.05em;
}

/* Values Section */
.page-about__value-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-about__value-list li {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #FFD700;
    transition: all 0.3s ease;
}

.page-about__value-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-about__value-title {
    font-size: 1.6em;
    color: #000080;
    margin-bottom: 10px;
}

.page-about__value-list p {
    color: #555;
}

/* Why Choose Section */
.page-about__why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-about__why-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__why-item:hover {
    transform: translateY(-5px);
}

.page-about__why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    /* No filter allowed here */
}

.page-about__why-item h3 {
    font-size: 1.5em;
    color: #000080;
    margin-bottom: 10px;
}

.page-about__why-item p {
    color: #555;
    font-size: 1em;
}

/* CTA Section */
.page-about__cta {
    background-color: #000080;
    color: #fff;
    padding: 80px 0;
}

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

.page-about__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #eee;
}

.page-about__text-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-about__text-link:hover {
    color: #e6c200;
}

.page-about__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__mv-grid, .page-about__value-list, .page-about__why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-about__story, .page-about__mission-vision, .page-about__values, .page-about__why-choose, .page-about__cta {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-about__mv-item, .page-about__value-list li, .page-about__why-item {
        padding: 25px;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 60px 0;
    }
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-about__story-content p, .page-about__mv-item p, .page-about__value-list p, .page-about__why-item p {
        font-size: 0.95em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-actions {
        flex-direction: column;
        gap: 10px;
    }
}