<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* About page styling */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    margin-bottom: 100px; /* space for footer */
}

.about-page h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2.5em;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.about-page h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1C6E99;
    border-radius: 3px;
}

.about-page h2 {
    color: #1C6E99;
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.about-page p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
    font-size: 1.05em;
}

.about-page ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.about-page li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.about-page b, 
.about-page strong {
    color: #333;
    font-weight: 600;
}

.about-page .mission {
    background-color: #f8f9fa;
    border-left: 4px solid #1C6E99;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}


.about-page .benefits-section {
    margin-top: 35px;
}

.about-page .feature-item {
    transition: transform 0.3s ease;
}

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

.about-page a {
    color: #1C6E99;
    text-decoration: none;
    transition: color 0.2s;
}

.about-page a:hover {
    color: #165779;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-container {
        padding: 30px 15px;
        margin-top: 20px;
    }
    
    .about-page h1 {
        font-size: 2em;
    }
    
    .about-page h2 {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 25px 12px;
    }
    
    .about-page h1 {
        font-size: 1.8em;
    }
    
    .about-page h2 {
        font-size: 1.3em;
    }
    
    .about-page ul {
        padding-left: 20px;
    }
}
</pre></body></html>