        .app-section {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .app-section h1, .app-section p {
            text-align: center;
            color: #333;
        }

        .app-projects {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
        }

        .app-project {
            flex: 1 1 calc(33.333% - 20px);
            background: #f4f4f4;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .app-project:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .app-project h3 {
            margin: 10px 0;
            color: #333;
        }

        .app-project p {
            color: #555;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .app-project a {
            text-decoration: none;
            color: #007BFF;
            font-weight: bold;
        }

        .app-project a:hover {
            text-decoration: underline;
        }

        .app-project img {
            width: 100px;
            height: auto;
            margin-bottom: 15px;
        }

        .github-link {
            text-align: center;
            margin-top: 40px;
        }

        .github-link a {
            font-size: 1.2rem;
            color: #007BFF;
            font-weight: bold;
            text-decoration: none;
        }

        .github-link a:hover {
            text-decoration: underline;
        }
