
        .kej-hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=1200') center/cover;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .kej-hero-title {
            font-size: 3rem;
            color: #ff6600;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .kej-hero-subtitle {
            font-size: 1.1rem;
            max-width: 800px;
            line-height: 1.6;
        }

        .kej-contact-container {
            display: flex;
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            gap: 60px;
            flex-wrap: wrap;
        }

        .kej-form-wrapper {
            flex: 1;
            min-width: 300px;
        }

        .kej-info-wrapper {
            flex: 1;
            min-width: 300px;
        }

        .kej-info-title {
            font-size: 2rem;
            color: #ff6600;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .kej-form-group {
            margin-bottom: 20px;
        }

        .kej-input-field,
        .kej-textarea-field {
            width: 100%;
            padding: 15px 20px;
            background-color: #1a2332;
            border: none;
            border-radius: 8px;
            color: #8899aa;
            font-size: 15px;
            outline: none;
            transition: all 0.3s;
        }

        .kej-input-field:focus,
        .kej-textarea-field:focus {
            background-color: #223044;
            color: white;
        }

        .kej-textarea-field {
            min-height: 150px;
            resize: vertical;
            font-family: inherit;
        }

        .kej-submit-btn {
            width: 100%;
            padding: 15px;
            background-color: #ff6600;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .kej-submit-btn:hover {
            background-color: #ff7722;
        }

        .kej-submit-btn:active {
            transform: scale(0.98);
        }

        .kej-info-item {
            margin-bottom: 35px;
        }

        .kej-info-label {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .kej-info-icon {
            margin-right: 8px;
            font-size: 18px;
        }

        .kej-phone-icon {
            color: #ff6600;
        }

        .kej-email-icon {
            color: #333;
        }

        .kej-web-icon {
            color: #00aaff;
        }

        .kej-location-icon {
            color: #ff3366;
        }

        .kej-info-content {
            color: #555;
            line-height: 1.6;
            margin-left: 26px;
        }

        .kej-info-link {
            color: #555;
            text-decoration: none;
        }

        .kej-info-link:hover {
            color: #ff6600;
        }

        @media (max-width: 768px) {
            .kej-hero-title {
                font-size: 2rem;
            }

            .kej-contact-container {
                flex-direction: column;
                gap: 40px;
            }

            .kej-info-title {
                font-size: 1.5rem;
            }
        }