:root {

            --primary-light: #ffffff;
        }



        .profile-section {
            
            position: relative;
            overflow: hidden;
        }

        .profile-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(61, 143, 239, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .company-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(61, 143, 239, 0.15);
            border: 1px solid rgba(61, 143, 239, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .company-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(61, 143, 239, 0.25);
        }

        .company-title {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .company-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
            border-radius: 2px;
        }

        .company-info {
            color: #555;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .info-item {
            margin: 0.8rem 0;
            display: flex;
            align-items: start;
        }

        .info-icon {
            color: var(--primary-color);
            font-weight: bold;
            margin-right: 0.5rem;
            min-width: 20px;
        }

        .video-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(61, 143, 239, 0.2);
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            margin-top: 1.5rem;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .branch-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-divider {
            height: 2rem;
        }

        @media (max-width: 768px) {
            .company-card {
                padding: 1.5rem;
            }
            
            .company-title {
                font-size: 1.5rem;
            }
        }