/* About Us page specific styles */

/* Hero section */
#text01 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 3rem 0;
    color: #1a237e;
}

/* Mission statement */
#text02 {
    font-size: 1.8rem;
    text-align: center;
    color: #283593;
    margin: 2rem 0;
    line-height: 1.4;
}

/* Main content */
#text03 {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #37474f;
    text-align: justify;
    margin: 2rem auto;
    max-width: 900px;
}

/* Summary section */
#text04 {
    background-color: #f5f8ff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    font-size: 1.2rem;
    color: #1a237e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Dividers */
#divider01, #divider02 {
    height: 2px;
    background: linear-gradient(to right, transparent, #3f51b5, transparent);
    margin: 3rem 0;
}

/* Footer container */
#container01 {
    background-color: #f5f8ff;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 8px;
}

/* Footer links */
#links01 {
    margin: 1rem 0;
}

#links01 a {
    color: #3f51b5;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#links01 a:hover {
    background-color: rgba(63, 81, 181, 0.1);
    color: #283593;
}

/* Copyright text */
#text06 {
    color: #37474f;
    font-size: 0.9rem;
    margin-top: 2rem;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    #text01 {
        font-size: 2rem;
        margin: 2rem 0;
    }

    #text02 {
        font-size: 1.5rem;
    }

    #text03 {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    #text04 {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    #container01 {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Print styles */
@media print {
    #text01, #text02 {
        color: #000;
    }

    #text04 {
        background: none;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    #container01 {
        background: none;
        padding: 1rem 0;
    }
} 