.logo-container-2 {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 60px auto;
        }

        .logo-card-2 {
            display: flex;
            align-items: center;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: 100%;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .logo-card-2:hover {
            transform: translateY(-5px);
        }

        .logo-img-container-2 {
            width: 150px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 30px;
            border: 1px solid #eee;
            padding: 10px;
            border-radius: 8px;
            background-color: #000000;
        }

        .logo-img-2 {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .logo-info-2 {
            flex: 1;
        }

        .logo-title-2 {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .logo-description-2 {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .logo-format-2 {
            font-size: 14px;
            color: #888;
            background-color: #f0f0f0;
            padding: 4px 12px;
            border-radius: 12px;
            display: inline-block;
        }

        .download-btn-2 {
            background-color: #0c243d;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s;
            white-space: nowrap;
            margin-left: 20px;
        }

        .download-btn-2:hover {
            background-color: #253d57;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .logo-card-2 {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }

            .logo-img-container-2 {
                width: 120px;
                height: 120px;
                margin-right: 0;
                margin-bottom: 20px;
            }

            .logo-info-2 {
                margin-bottom: 20px;
            }

            .download-btn-2 {
                margin-left: 0;
                width: 100%;
            }

            .logo-title-2 {
                font-size: 20px;
            }

            .logo-description-2 {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .logo-img-container-2 {
                width: 100px;
                height: 100px;
            }

            .logo-title-2 {
                font-size: 18px;
            }

            .logo-description-2 {
                font-size: 14px;
            }
        }