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

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

.page-about-hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-about-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-about-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.page-about-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about-hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-about-btn-primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-about-btn-primary:hover {
    background-color: #E0B800;
    color: #6B0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-about-btn-secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-about-btn-secondary:hover {
    background-color: #6B0000;
    color: #E0B800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-about-intro,
.page-about-vision-mission,
.page-about-why-us {
    padding: 60px 0;
}

.page-about-intro {
    background-color: #FFFFFF;
}

.page-about-intro h2,
.page-about-vision-mission h2,
.page-about-why-us h2 {
    text-align: center;
    font-size: 2.5em;
    color: #8B0000;
    margin-bottom: 50px;
    position: relative;
}

.page-about-intro h2::after,
.page-about-vision-mission h2::after,
.page-about-why-us h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-about-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-about-intro-text {
        order: 1;
    }
    .page-about-intro-image {
        order: 2;
    }
}

.page-about-intro-text p {
    margin-bottom: 20px;
}

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

.page-about-vision-mission {
    background-color: #F0F0F0;
}

.page-about-grid-2-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .page-about-grid-2-cols {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

.page-about-card h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-about-card p {
    color: #555555;
}

.page-about-why-us {
    background-color: #FFFFFF;
}

.page-about-grid-3-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .page-about-grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.page-about-feature-item {
    background-color: #FDFDFD;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-about-feature-item .page-about-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.page-about-feature-item h3 {
    color: #8B0000;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-about-feature-item p {
    color: #666666;
}

.page-about-cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #EEEEEE;
}

.page-about-cta-bottom p {
    font-size: 1.3em;
    color: #8B0000;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .page-about-hero h1 {
        font-size: 2.5em;
    }
    .page-about-hero p {
        font-size: 1em;
    }
    .page-about-intro h2,
    .page-about-vision-mission h2,
    .page-about-why-us h2 {
        font-size: 2em;
    }
    .page-about-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}