.career {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 20px;
            padding-bottom: 15px;
        }

        .career-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: start;
        }

        .career-openings {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .career-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            border-bottom: 3px solid #e63946;
            padding-bottom: 8px;
            display: inline-block;
        }

        .job-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .job-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 12px 35px rgba(0, 0, 0, 0.1);
        }

        .job-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .job-details {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }

        .job-detail {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #555;
        }

        .detail-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            background-color: #fee;
            color: #e63946;
        }

        .career-form {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
            height: fit-content;
        }

        .form-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            border-bottom: 3px solid #e63946;
            padding-bottom: 8px;
            display: inline-block;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #555;
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.2s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #aaa;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e63946;
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background-color: #e63946;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
            margin-top: 8px;
        }

        .submit-btn:hover {
            background-color: #d62828;
        }

        .submit-btn:active {
            transform: scale(0.98);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .career-container {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 16px;
            }

            .career-title,
            .form-title {
                font-size: 20px;
            }

            .job-title {
                font-size: 16px;
            }

            .job-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .career-form {
                padding: 20px;
                margin-bottom: 20px;
            }

            .job-card {
                margin-bottom: 0;
            }
        }

        @media (max-width: 480px) {
            .career-container {
                gap: 16px;
                padding: 0 12px;
            }

            .career-title,
            .form-title {
                font-size: 18px;
            }

            .job-card {
                padding: 16px;
            }

            .career-form {
                padding: 16px;
                margin-bottom: 16px;
            }

            .job-detail {
                font-size: 13px;
            }

            .career-openings {
                gap: 12px;
            }
        }