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

/* Hero Section */
.page-about-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #FFD700 0%, #000000 100%);
    color: #FFFFFF;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-about-hero-content {
    max-width: 900px;
    z-index: 10;
}

.page-about-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
}

.page-about-hero-image .page-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styling */
.page-about-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-about-section:nth-of-type(even) {
    background-color: #f8f8f8;
}

.page-about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-about-section-title {
    font-size: 2.8em;
    color: #000000;
    margin-bottom: 40px;
    font-weight: bold;
    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;
}

.page-about-sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about-text {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
}

/* Grid Layout for Mission/Vision */
.page-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-about-grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-about-grid-item .small-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

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

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

.page-about-feature-item .icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-about-feature-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

/* 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, color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 10px;
}

.page-about-btn.primary-btn {
    background-color: #FFD700;
    color: #000000;
}

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

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

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

/* Call to Action Section */
.page-about-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(45deg, #000000 0%, #333333 100%);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    margin-top: 20px;
}

.page-about-cta-content {
    max-width: 900px;
    margin-bottom: 40px;
}

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

.page-about-cta-text {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

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

.page-about-cta-image .page-about-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-about-hero {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 100px 40px;
    }

    .page-about-hero-content {
        flex: 1;
        padding-right: 40px;
    }

    .page-about-hero-image {
        position: relative;
        flex: 1;
        opacity: 1;
    }

    .page-about-hero-image .page-about-img {
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-about-title {
        font-size: 4.5em;
    }

    .page-about-subtitle {
        font-size: 1.8em;
    }

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

    .page-about-cta {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
        justify-content: space-between;
    }

    .page-about-cta-content {
        flex: 1;
        padding-right: 40px;
        margin-bottom: 0;
    }

    .page-about-cta-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-about-section-title::after {
        left: 0;
        transform: translateX(0);
    }

    .page-about-content-wrapper {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .page-about-title {
        font-size: 2.5em;
    }

    .page-about-subtitle {
        font-size: 1.2em;
    }

    .page-about-section-title {
        font-size: 2em;
    }

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

    .page-about-feature-title {
        font-size: 1.4em;
    }

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

    .page-about-cta-text {
        font-size: 1.1em;
    }

    .page-about-btn {
        width: 100%;
        margin: 10px 0;
    }
}