        /* =============== ABOUT PAGE STYLES =============== */
        .about-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .about-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .about-header h1 {
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .about-header p {
            color: var(--dark-gray);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-section {
            margin-bottom: 40px;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .about-section h2 {
            color: var(--primary-green);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--medium-gray);
        }
        
        .about-section p {
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        .feature-list {
            list-style-type: none;
            margin: 20px 0;
        }
        
        .feature-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            line-height: 1.6;
        }
        
        .feature-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 5px;
            width: 20px;
            height: 20px;
            background-size: contain;
            background-repeat: no-repeat;
        }
        
        .vision-section {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
        }
        
        .vision-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .vision-feature {
            background-color: white;
            padding: 20px;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .vision-feature h3 {
            color: var(--primary-orange);
            margin-bottom: 10px;
        }
        
        .contact-section {
            text-align: center;
            margin-top: 50px;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-blue);
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .about-section {
                padding: 20px;
            }
            
            .vision-features {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
        }
