/* style/about.css */

/* General styles for the about page content */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

.page-about-section {
    padding: 60px 0;
}

.page-about-section:nth-child(even) {
    background-color: #f2f2f2;
}

.page-about-section-title {
    font-size: 2.8em;
    color: #0A246A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

/* Hero Section */
.page-about-hero {
    background: linear-gradient(135deg, #0A246A 0%, #2a4a9a 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-about-hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-about-hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

/* Buttons */
.page-about-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-about-btn-primary {
    background-color: #FFD700;
    color: #0A246A;
    border: 2px solid #FFD700;
}

.page-about-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-about-btn-secondary {
    background-color: #0A246A;
    color: #FFD700;
    border: 2px solid #0A246A;
}

.page-about-btn-secondary:hover {
    background-color: #071a4f;
    border-color: #071a4f;
}

.page-about-btn-tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-about-btn-tertiary:hover {
    background-color: #FFD700;
    color: #0A246A;
}

/* Content Wrapper for sections with text and image */
.page-about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

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

.page-about-text-content {
    flex: 1;
}

.page-about-text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
    text-align: justify;
}

.page-about-image-content {
    flex: 1;
    text-align: center;
}

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

.page-about-subtitle {
    font-size: 1.8em;
    color: #0A246A;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Why Choose F168 Section */
.page-about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.page-about-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-about-feature-title {
    font-size: 1.5em;
    color: #0A246A;
    margin-bottom: 15px;
}

.page-about-feature-item p {
    font-size: 1em;
    color: #555;
    text-align: center;
}

/* Call to Action Section */
.page-about-cta {
    background-color: #0A246A;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

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

.page-about-cta .page-about-section-title {
    color: #FFD700;
}
.page-about-cta .page-about-section-title::after {
    background-color: #ffffff;
}

.page-about-cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-about-hero-title {
        font-size: 3em;
    }
    .page-about-section-title {
        font-size: 2.2em;
    }
    .page-about-content-wrapper {
        flex-direction: column;
    }
    .page-about-content-wrapper-reverse {
        flex-direction: column;
    }
    .page-about-feature-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-about-hero {
        padding: 80px 0;
    }
    .page-about-hero-title {
        font-size: 2.5em;
    }
    .page-about-hero-description {
        font-size: 1.1em;
    }
    .page-about-section {
        padding: 40px 0;
    }
    .page-about-section-title {
        font-size: 1.8em;
    }
    .page-about-subtitle {
        font-size: 1.5em;
    }
    .page-about-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about-btn-tertiary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-about-cta-buttons .page-about-btn + .page-about-btn {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-about-hero-title {
        font-size: 2em;
    }
    .page-about-hero-description {
        font-size: 1em;
    }
    .page-about-section-title {
        font-size: 1.6em;
    }
    .page-about-btn {
        width: 100%;
        box-sizing: border-box;
    }
}