        .about-section {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin-top: 10px;
        }

        .about-section p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .about-section img {
            width: 100%;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .stats-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-top: 30px;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(255,102,0,0.9), rgba(255,153,0,0.9));
            color: white;
            flex: 1 1 calc(33.333% - 20px);
            min-width: 200px;
            text-align: center;
            padding: 25px 15px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

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

        .stat-card h3 {
            font-size: 1.6rem;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .stat-card p {
            font-size: 0.95rem;
            margin: 0;
        }
        
        @media (max-width: 768px) {
            .stat-card {
                flex: 1 1 100%;
            }
        }
        .lined-title {
            position: relative;
            font-size: 1.3rem;
            font-weight: bold;
            color: #333;
            padding-left: 15px;
            margin-bottom: 20px;
            display: flex; 
            align-items: center; 
        }
        
        .lined-title i {
            margin-right: 10px;
            color: #ff6600;
        }

        .lined-title::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 5px;
            height: 60%;
            background: linear-gradient(180deg, #ff6600, #ff6600);
            transform: translateY(-50%);
            border-radius: 3px;
        }