
        .about-header {
            color: black;
            text-align: center;
            margin-top: 120px;
        }
        .about-header h1 {
            font-size: 2.5rem;
        }
        .about-intro {
            margin-top:20px;
            text-align: center;
            margin-bottom: 20px;
            padding: 0 20px;
        }
        .about-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }
        .about-column {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(252, 33, 33, 0.3);
        }
        .about-column h3 {
            color: #2c3e50;
            margin-top: 0;
            padding-bottom: 10px;
            border-bottom: 3px solid #960c05ff;
        }
        .vision-img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            margin-top: 15px;
        }
        .values-list {
            padding-left: 20px;
        }
        .values-list li {
            margin-bottom: 10px;
        }
        .team-section {
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .about-column {
                min-width: 100%;
            }
        }