  .content-section {
            background: rgba(255, 255, 255, 0.95);
            margin: 30px 0;
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transform: translateY(20px);
            animation: slideUp 0.8s ease forwards;
        }

        @keyframes slideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .content-section {
            opacity: 0;
        }

        .content-section:nth-child(2) { animation-delay: 0.2s; }
        .content-section:nth-child(3) { animation-delay: 0.4s; }
        .content-section:nth-child(4) { animation-delay: 0.6s; }

        h2 {
            color: #667eea;
            font-size: 2.2em;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        h3 {
            color: #764ba2;
            font-size: 1.5em;
            margin: 25px 0 15px 0;
        }

        p {
            font-size: 1.1em;
            margin-bottom: 15px;
            color: #555;
            text-align: justify;
        }

        .founder-section {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-top: 30px;
        }

       .founder-image {
            width: 400px;
            height: 300px;
           /*  border-radius: 50%; */
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
            border: 4px solid #667eea;
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }


        .founder-info {
            flex: 1;
        }

        .founder-name {
            font-size: 1.8em;
            font-weight: bold;
            color: #667eea;
            margin-bottom: 10px;
        }

        .founder-title {
            font-size: 1.2em;
            color: #764ba2;
            font-style: italic;
            margin-bottom: 15px;
        }

        .vision-mission {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }

        .vision-box, .mission-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #667eea;
        }

        .mission-box {
            border-left-color: #764ba2;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 25px;
            border-radius: 15px;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            font-size: 1em;
            margin-top: 10px;
        }

        @media (max-width: 768px) {
            .founder-section {
                flex-direction: column;
                text-align: center;
            }
            
            .founder-image {
                width: 150px;
                height: 150px;
                font-size: 3em;
            }
            
            .vision-mission {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 15px;
            }
            
            .header, .content-section {
                padding: 25px;
            }
        }