/* about.css */

.content-page {
    max-width: 1200px !important;
    margin: 10px auto 0 auto;  /* Changed from 20px to 10px */
    background: white;
    border-radius: 20px;
    padding: 0px 40px 0px;  /* Changed from 30px 40px to 0px 40px 0px (top, sides, bottom) */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.content-page h1 {
    color: #1a1a1a;
    margin-bottom: 15px;  /* Reduced from 20px */
}

.content-page h2 {
    color: #667eea;
    margin-top: 20px;  /* Reduced from 30px */
    margin-bottom: 10px;  /* Reduced from 15px */
}

.content-page p {
    color: #4b5563;
    line-height: 1.6;  /* Reduced from 1.8 */
    margin-bottom: 12px;  /* Reduced from 15px */
}

.content-page ul {
    color: #4b5563;
    margin-left: 20px;
    margin-bottom: 12px;  /* Reduced from 15px */
}

.content-page li {
    margin-bottom: 8px;  /* Reduced from 10px */
}
