

        .info-section {
            padding: 80px 20px;
            position: relative;
            margin: 40px 0;
            background-color: #111;
        }

        .info-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
            z-index: -1;
        }

        .info-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .info-title {
            font-size: 28px;
            font-weight: 300;
            color: white;
            margin-bottom: 50px;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .info-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: #f86d08;
        }

        .info-cards {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .info-card {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            padding: 30px 20px;
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.03);
            transition: transform 0.3s ease, background-color 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .info-card:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.05);
            border-bottom-color: #f86d08;
        }

        .info-icon {
            font-size: 24px;
            color: #f86d08;
            margin-bottom: 20px;
        }

        .info-card-title {
            font-size: 18px;
            font-weight: 400;
            color: white;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .info-text {
            color: #aaa;
            font-size: 14px;
            line-height: 1.6;
        }

        .info-text a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .info-text a:hover {
            color: #f86d08;
        }

        @media (max-width: 768px) {
            .info-cards {
                flex-direction: column;
                align-items: center;
            }

            .info-card {
                width: 100%;
            }

            .info-title {
                font-size: 24px;
            }
        }